53 lines
2.5 KiB
C#
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 application-defined exceptions.</summary>
|
|
// Token: 0x020000B5 RID: 181
|
|
[Token(Token = "0x20000B5")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class ApplicationException : Exception
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ApplicationException" /> class.</summary>
|
|
// Token: 0x060004FC RID: 1276 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004FC")]
|
|
[Address(RVA = "0x2D028F0", Offset = "0x2D018F0", VA = "0x182D028F0")]
|
|
public ApplicationException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ApplicationException" /> class with a specified error message.</summary>
|
|
/// <param name="message">A message that describes the error.</param>
|
|
// Token: 0x060004FD RID: 1277 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004FD")]
|
|
[Address(RVA = "0x2D02970", Offset = "0x2D01970", VA = "0x182D02970")]
|
|
public ApplicationException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ApplicationException" /> 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, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
|
|
// 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)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ApplicationException" /> 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: 0x060004FF RID: 1279 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004FF")]
|
|
[Address(RVA = "0x2D029F0", Offset = "0x2D019F0", VA = "0x182D029F0")]
|
|
protected ApplicationException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|