|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Runtime
{
internal enum ExceptionIDs
{
OutOfMemory = 1,
Arithmetic = 2,
ArrayTypeMismatch = 3,
DivideByZero = 4,
IndexOutOfRange = 5,
InvalidCast = 6,
Overflow = 7,
NullReference = 8,
AccessViolation = 9,
DataMisaligned = 10,
EntrypointNotFound = 11,
AmbiguousImplementation = 12,
IllegalInstruction = 13,
PrivilegedInstruction = 14,
InPageError = 15,
}
}
|