This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 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: 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
{
/// <summary>Initializes a new instance of the <see cref="T:System.ExecutionEngineException" /> class.</summary>
// Token: 0x060008EB RID: 2283 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008EB")]
[Address(RVA = "0x724120", Offset = "0x723120", VA = "0x180724120")]
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: 0x060008EC RID: 2284 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008EC")]
[Address(RVA = "0x724170", Offset = "0x723170", VA = "0x180724170")]
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: 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)
{
}
}
}