Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/SystemException.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

53 lines
2.5 KiB
C#

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: 0x02000145 RID: 325
[Token(Token = "0x2000145")]
[ComVisible(true)]
[Serializable]
public class SystemException : Exception
{
/// <summary>Initializes a new instance of the <see cref="T:System.SystemException" /> class.</summary>
// Token: 0x06000CC4 RID: 3268 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CC4")]
[Address(RVA = "0xD36030", Offset = "0xD35030", VA = "0x180D36030")]
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: 0x06000CC5 RID: 3269 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CC5")]
[Address(RVA = "0xD360B0", Offset = "0xD350B0", VA = "0x180D360B0")]
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: 0x06000CC6 RID: 3270 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CC6")]
[Address(RVA = "0xD35F20", Offset = "0xD34F20", VA = "0x180D35F20")]
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: 0x06000CC7 RID: 3271 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CC7")]
[Address(RVA = "0xD35FB0", Offset = "0xD34FB0", VA = "0x180D35FB0")]
protected SystemException(SerializationInfo info, StreamingContext context)
{
}
}
}