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: 0x020000AE RID: 174
|
|
[Token(Token = "0x20000AE")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class ApplicationException : Exception
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ApplicationException" /> class.</summary>
|
|
// Token: 0x060004E1 RID: 1249 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004E1")]
|
|
[Address(RVA = "0x26BEC00", Offset = "0x26BDA00", VA = "0x1826BEC00")]
|
|
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: 0x060004E2 RID: 1250 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004E2")]
|
|
[Address(RVA = "0x26BEC80", Offset = "0x26BDA80", VA = "0x1826BEC80")]
|
|
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: 0x060004E3 RID: 1251 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004E3")]
|
|
[Address(RVA = "0x26BEB70", Offset = "0x26BD970", VA = "0x1826BEB70")]
|
|
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: 0x060004E4 RID: 1252 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60004E4")]
|
|
[Address(RVA = "0x26BED00", Offset = "0x26BDB00", VA = "0x1826BED00")]
|
|
protected ApplicationException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|