using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// The exception thrown when using invalid arguments that are enumerators.
// Token: 0x02000151 RID: 337
[Token(Token = "0x2000151")]
[Serializable]
public class InvalidEnumArgumentException : ArgumentException
{
/// Initializes a new instance of the class without a message.
// Token: 0x0600081A RID: 2074 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600081A")]
[Address(RVA = "0x4EF7E0", Offset = "0x4EE5E0", VA = "0x1804EF7E0")]
public InvalidEnumArgumentException()
{
}
/// Initializes a new instance of the class with the specified message.
/// The message to display with this exception.
// Token: 0x0600081B RID: 2075 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600081B")]
[Address(RVA = "0x4EF7A0", Offset = "0x4EE5A0", VA = "0x1804EF7A0")]
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: 0x0600081C RID: 2076 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600081C")]
[Address(RVA = "0x4EF7D0", Offset = "0x4EE5D0", VA = "0x1804EF7D0")]
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: 0x0600081D RID: 2077 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600081D")]
[Address(RVA = "0x4EF7F0", Offset = "0x4EE5F0", VA = "0x1804EF7F0")]
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: 0x0600081E RID: 2078 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600081E")]
[Address(RVA = "0x4EF7B0", Offset = "0x4EE5B0", VA = "0x1804EF7B0")]
protected InvalidEnumArgumentException(SerializationInfo info, StreamingContext context)
{
}
}
}