45 lines
2.1 KiB
C#
45 lines
2.1 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>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. </summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x0200066A RID: 1642
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public sealed class ExecutionEngineException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ExecutionEngineException" /> class.</summary>
|
|
// Token: 0x06003E56 RID: 15958 RVA: 0x000D4154 File Offset: 0x000D2354
|
|
public ExecutionEngineException()
|
|
: base(Locale.GetText("Internal error occurred."))
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ExecutionEngineException" /> class with a specified error message.</summary>
|
|
/// <param name="message">The message that describes the error. </param>
|
|
// Token: 0x06003E57 RID: 15959 RVA: 0x000D4168 File Offset: 0x000D2368
|
|
public ExecutionEngineException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ExecutionEngineException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
|
/// <param name="message">The error message that explains the reason for the exception. </param>
|
|
/// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception. </param>
|
|
// 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)
|
|
{
|
|
}
|
|
}
|
|
}
|