53 lines
2.6 KiB
C#
53 lines
2.6 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>The exception that is thrown when the format of an argument is invalid, or when a composite format string is not well formed.</summary>
|
|
// Token: 0x020000F1 RID: 241
|
|
[Token(Token = "0x20000F1")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class FormatException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.FormatException" /> class.</summary>
|
|
// Token: 0x060008F3 RID: 2291 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60008F3")]
|
|
[Address(RVA = "0x724740", Offset = "0x723740", VA = "0x180724740")]
|
|
public FormatException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.FormatException" /> class with a specified error message.</summary>
|
|
/// <param name="message">The message that describes the error.</param>
|
|
// Token: 0x060008F4 RID: 2292 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60008F4")]
|
|
[Address(RVA = "0x724790", Offset = "0x723790", VA = "0x180724790")]
|
|
public FormatException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.FormatException" /> 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 (<see langword="Nothing" /> in Visual Basic), the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
|
|
// Token: 0x060008F5 RID: 2293 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60008F5")]
|
|
[Address(RVA = "0x724720", Offset = "0x723720", VA = "0x180724720")]
|
|
public FormatException(string message, Exception innerException)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.FormatException" /> 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: 0x060008F6 RID: 2294 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60008F6")]
|
|
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
|
protected FormatException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|