using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.ComponentModel { /// The exception thrown when using invalid arguments that are enumerators. // Token: 0x0200014D RID: 333 [Token(Token = "0x200014D")] [Serializable] public class InvalidEnumArgumentException : ArgumentException { /// Initializes a new instance of the class without a message. // Token: 0x06000804 RID: 2052 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000804")] [Address(RVA = "0xC59BC0", Offset = "0xC58BC0", VA = "0x180C59BC0")] public InvalidEnumArgumentException() { } /// Initializes a new instance of the class with the specified message. /// The message to display with this exception. // Token: 0x06000805 RID: 2053 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000805")] [Address(RVA = "0xC59BA0", Offset = "0xC58BA0", VA = "0x180C59BA0")] public InvalidEnumArgumentException(string message) { } /// Initializes a new instance of the class with the specified detailed description and the specified exception. /// A detailed description of the error. /// A reference to the inner exception that is the cause of this exception. // Token: 0x06000806 RID: 2054 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000806")] [Address(RVA = "0xC59BB0", Offset = "0xC58BB0", VA = "0x180C59BB0")] public InvalidEnumArgumentException(string message, Exception innerException) { } /// Initializes a new instance of the class with a message generated from the argument, the invalid value, and an enumeration class. /// The name of the argument that caused the exception. /// The value of the argument that failed. /// A that represents the enumeration class with the valid values. // Token: 0x06000807 RID: 2055 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000807")] [Address(RVA = "0xC59BD0", Offset = "0xC58BD0", VA = "0x180C59BD0")] public InvalidEnumArgumentException(string argumentName, int invalidValue, Type enumClass) { } /// Initializes a new instance of the class using the specified serialization data and context. /// The to be used for deserialization. /// The destination to be used for deserialization. // Token: 0x06000808 RID: 2056 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000808")] [Address(RVA = "0x71BEB0", Offset = "0x71AEB0", VA = "0x18071BEB0")] protected InvalidEnumArgumentException(SerializationInfo info, StreamingContext context) { } } }