using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
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.
/// 2
// Token: 0x0200066A RID: 1642
[ComVisible(true)]
[Serializable]
public sealed class ExecutionEngineException : SystemException
{
/// Initializes a new instance of the class.
// Token: 0x06003E56 RID: 15958 RVA: 0x000D4154 File Offset: 0x000D2354
public ExecutionEngineException()
: base(Locale.GetText("Internal error occurred."))
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x06003E57 RID: 15959 RVA: 0x000D4168 File Offset: 0x000D2368
public ExecutionEngineException(string message)
: base(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 (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception.
// Token: 0x06003E58 RID: 15960 RVA: 0x000D4174 File Offset: 0x000D2374
public ExecutionEngineException(string message, Exception innerException)
: base(message, innerException)
{
}
// Token: 0x06003E59 RID: 15961 RVA: 0x000D4180 File Offset: 0x000D2380
internal ExecutionEngineException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}