using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when the format of an argument is invalid, or when a composite format string is not well formed. // Token: 0x020000EA RID: 234 [Token(Token = "0x20000EA")] [ComVisible(true)] [Serializable] public class FormatException : SystemException { /// Initializes a new instance of the class. // Token: 0x060008C9 RID: 2249 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60008C9")] [Address(RVA = "0x1E94BA0", Offset = "0x1E939A0", VA = "0x181E94BA0")] public FormatException() { } /// Initializes a new instance of the class with a specified error message. /// The message that describes the error. // Token: 0x060008CA RID: 2250 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60008CA")] [Address(RVA = "0x1E94BF0", Offset = "0x1E939F0", VA = "0x181E94BF0")] public FormatException(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 ( in Visual Basic), the current exception is raised in a block that handles the inner exception. // Token: 0x060008CB RID: 2251 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60008CB")] [Address(RVA = "0x1E94B80", Offset = "0x1E93980", VA = "0x181E94B80")] public FormatException(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: 0x060008CC RID: 2252 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60008CC")] [Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")] protected FormatException(SerializationInfo info, StreamingContext context) { } } }