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: 0x020000EE RID: 238
[Token(Token = "0x20000EE")]
[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: 0x060008EB RID: 2283 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008EB")]
[Address(RVA = "0x724120", Offset = "0x723120", VA = "0x180724120")]
public ExecutionEngineException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x060008EC RID: 2284 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008EC")]
[Address(RVA = "0x724170", Offset = "0x723170", VA = "0x180724170")]
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: 0x060008ED RID: 2285 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008ED")]
[Address(RVA = "0x724190", Offset = "0x723190", VA = "0x180724190")]
public ExecutionEngineException(string message, Exception innerException)
{
}
// Token: 0x060008EE RID: 2286 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008EE")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
internal ExecutionEngineException(SerializationInfo info, StreamingContext context)
{
}
}
}