using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// Serves as the base class for system exceptions namespace.
// Token: 0x02000145 RID: 325
[Token(Token = "0x2000145")]
[ComVisible(true)]
[Serializable]
public class SystemException : Exception
{
/// Initializes a new instance of the class.
// Token: 0x06000CC4 RID: 3268 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CC4")]
[Address(RVA = "0xD36030", Offset = "0xD35030", VA = "0x180D36030")]
public SystemException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x06000CC5 RID: 3269 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000CC5")]
[Address(RVA = "0xD360B0", Offset = "0xD350B0", VA = "0x180D360B0")]
public SystemException(string message)
{
}
/// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception. If the parameter is not a null reference ( in Visual Basic), the current exception is raised in a block that handles the inner exception.
// 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)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
// 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)
{
}
}
}