File: System\Runtime\ExceptionIDs.cs
Web Access
Project: src\src\runtime\src\coreclr\nativeaot\System.Private.CoreLib\src\System.Private.CoreLib.csproj (System.Private.CoreLib)
// 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,
    }
}