using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// Serves as the base class for application-defined exceptions.
// Token: 0x020000AE RID: 174
[Token(Token = "0x20000AE")]
[ComVisible(true)]
[Serializable]
public class ApplicationException : Exception
{
/// Initializes a new instance of the class.
// Token: 0x060004E1 RID: 1249 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004E1")]
[Address(RVA = "0x26BEC00", Offset = "0x26BDA00", VA = "0x1826BEC00")]
public ApplicationException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// A message that describes the error.
// Token: 0x060004E2 RID: 1250 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004E2")]
[Address(RVA = "0x26BEC80", Offset = "0x26BDA80", VA = "0x1826BEC80")]
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: 0x060004E3 RID: 1251 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004E3")]
[Address(RVA = "0x26BEB70", Offset = "0x26BD970", VA = "0x1826BEB70")]
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: 0x060004E4 RID: 1252 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004E4")]
[Address(RVA = "0x26BED00", Offset = "0x26BDB00", VA = "0x1826BED00")]
protected ApplicationException(SerializationInfo info, StreamingContext context)
{
}
}
}