This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,51 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
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>
// 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
{
/// <summary>Initializes a new instance of the <see cref="T:System.ExecutionEngineException" /> class.</summary>
// Token: 0x060008C1 RID: 2241 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008C1")]
[Address(RVA = "0x1E945A0", Offset = "0x1E933A0", VA = "0x181E945A0")]
public ExecutionEngineException()
{
}
/// <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: 0x060008C2 RID: 2242 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008C2")]
[Address(RVA = "0x1E945F0", Offset = "0x1E933F0", VA = "0x181E945F0")]
public ExecutionEngineException(string 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 (<see langword="Nothing" /> in Visual Basic), the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// 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)
{
}
}
}