Files
2026-04-10 22:50:51 +02:00

62 lines
3.3 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>The exception thrown when using invalid arguments that are enumerators.</summary>
// Token: 0x02000151 RID: 337
[Token(Token = "0x2000151")]
[Serializable]
public class InvalidEnumArgumentException : ArgumentException
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidEnumArgumentException" /> class without a message.</summary>
// Token: 0x0600081A RID: 2074 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600081A")]
[Address(RVA = "0x4EF7E0", Offset = "0x4EE5E0", VA = "0x1804EF7E0")]
public InvalidEnumArgumentException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidEnumArgumentException" /> class with the specified message.</summary>
/// <param name="message">The message to display with this exception.</param>
// Token: 0x0600081B RID: 2075 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600081B")]
[Address(RVA = "0x4EF7A0", Offset = "0x4EE5A0", VA = "0x1804EF7A0")]
public InvalidEnumArgumentException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidEnumArgumentException" /> class with the specified detailed description and the specified exception.</summary>
/// <param name="message">A detailed description of the error.</param>
/// <param name="innerException">A reference to the inner exception that is the cause of this exception.</param>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidEnumArgumentException" /> class with a message generated from the argument, the invalid value, and an enumeration class.</summary>
/// <param name="argumentName">The name of the argument that caused the exception.</param>
/// <param name="invalidValue">The value of the argument that failed.</param>
/// <param name="enumClass">A <see cref="T:System.Type" /> that represents the enumeration class with the valid values.</param>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidEnumArgumentException" /> class using the specified serialization data and context.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used for deserialization.</param>
/// <param name="context">The destination to be used for deserialization.</param>
// 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)
{
}
}
}