This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>Serves as the base class for system exceptions namespace.</summary>
// Token: 0x0200013E RID: 318
[Token(Token = "0x200013E")]
[ComVisible(true)]
[Serializable]
public class SystemException : Exception
{
/// <summary>Initializes a new instance of the <see cref="T:System.SystemException" /> class.</summary>
// Token: 0x06000C90 RID: 3216 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C90")]
[Address(RVA = "0x2C4FA60", Offset = "0x2C4E860", VA = "0x182C4FA60")]
public SystemException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.SystemException" /> class with a specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x06000C91 RID: 3217 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C91")]
[Address(RVA = "0x2C4FAE0", Offset = "0x2C4E8E0", VA = "0x182C4FAE0")]
public SystemException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.SystemException" /> 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: 0x06000C92 RID: 3218 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C92")]
[Address(RVA = "0x2C4F9D0", Offset = "0x2C4E7D0", VA = "0x182C4F9D0")]
public SystemException(string message, Exception innerException)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.SystemException" /> class with serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination.</param>
// Token: 0x06000C93 RID: 3219 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C93")]
[Address(RVA = "0x2C450C0", Offset = "0x2C43EC0", VA = "0x182C450C0")]
protected SystemException(SerializationInfo info, StreamingContext context)
{
}
}
}