using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when there is an internal error in the execution engine of the common language runtime. This class cannot be inherited.
// Token: 0x020000E7 RID: 231
[Token(Token = "0x20000E7")]
[Obsolete]
[ComVisible(true)]
[Obsolete("This type previously indicated an unspecified fatal error in the runtime. The runtime no longer raises this exception so this type is obsolete.")]
[Serializable]
public sealed class ExecutionEngineException : SystemException
{
/// Initializes a new instance of the class.
// Token: 0x060008C1 RID: 2241 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008C1")]
[Address(RVA = "0x1E945A0", Offset = "0x1E933A0", VA = "0x181E945A0")]
public ExecutionEngineException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x060008C2 RID: 2242 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008C2")]
[Address(RVA = "0x1E945F0", Offset = "0x1E933F0", VA = "0x181E945F0")]
public ExecutionEngineException(string message)
{
}
/// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception. If the parameter is not a null reference ( in Visual Basic), the current exception is raised in a block that handles the inner exception.
// Token: 0x060008C3 RID: 2243 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008C3")]
[Address(RVA = "0x1E94610", Offset = "0x1E93410", VA = "0x181E94610")]
public ExecutionEngineException(string message, Exception innerException)
{
}
// Token: 0x060008C4 RID: 2244 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008C4")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
internal ExecutionEngineException(SerializationInfo info, StreamingContext context)
{
}
}
}