using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// Serves as the base class for application-defined exceptions.
// Token: 0x020000B5 RID: 181
[Token(Token = "0x20000B5")]
[ComVisible(true)]
[Serializable]
public class ApplicationException : Exception
{
/// Initializes a new instance of the class.
// Token: 0x060004FC RID: 1276 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004FC")]
[Address(RVA = "0x2D028F0", Offset = "0x2D018F0", VA = "0x182D028F0")]
public ApplicationException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// A message that describes the error.
// Token: 0x060004FD RID: 1277 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004FD")]
[Address(RVA = "0x2D02970", Offset = "0x2D01970", VA = "0x182D02970")]
public ApplicationException(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, the current exception is raised in a block that handles the inner exception.
// Token: 0x060004FE RID: 1278 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004FE")]
[Address(RVA = "0x2D02860", Offset = "0x2D01860", VA = "0x182D02860")]
public ApplicationException(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: 0x060004FF RID: 1279 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004FF")]
[Address(RVA = "0x2D029F0", Offset = "0x2D019F0", VA = "0x182D029F0")]
protected ApplicationException(SerializationInfo info, StreamingContext context)
{
}
}
}