using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// Serves as the base class for system exceptions namespace.
// Token: 0x0200013E RID: 318
[Token(Token = "0x200013E")]
[ComVisible(true)]
[Serializable]
public class SystemException : Exception
{
/// Initializes a new instance of the class.
// Token: 0x06000C90 RID: 3216 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C90")]
[Address(RVA = "0x2C4FA60", Offset = "0x2C4E860", VA = "0x182C4FA60")]
public SystemException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x06000C91 RID: 3217 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C91")]
[Address(RVA = "0x2C4FAE0", Offset = "0x2C4E8E0", VA = "0x182C4FAE0")]
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: 0x06000C92 RID: 3218 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C92")]
[Address(RVA = "0x2C4F9D0", Offset = "0x2C4E7D0", VA = "0x182C4F9D0")]
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: 0x06000C93 RID: 3219 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000C93")]
[Address(RVA = "0x2C450C0", Offset = "0x2C43EC0", VA = "0x182C450C0")]
protected SystemException(SerializationInfo info, StreamingContext context)
{
}
}
}