Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x0200014D RID: 333
[Token(Token = "0x200014D")]
[Serializable]
public class InvalidEnumArgumentException : ArgumentException
{
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidEnumArgumentException" /> class without a message.</summary>
// Token: 0x06000804 RID: 2052 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000804")]
[Address(RVA = "0xC59BC0", Offset = "0xC58BC0", VA = "0x180C59BC0")]
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: 0x06000805 RID: 2053 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000805")]
[Address(RVA = "0xC59BA0", Offset = "0xC58BA0", VA = "0x180C59BA0")]
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: 0x06000806 RID: 2054 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000806")]
[Address(RVA = "0xC59BB0", Offset = "0xC58BB0", VA = "0x180C59BB0")]
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: 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)
{
}
/// <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: 0x06000808 RID: 2056 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000808")]
[Address(RVA = "0x71BEB0", Offset = "0x71AEB0", VA = "0x18071BEB0")]
protected InvalidEnumArgumentException(SerializationInfo info, StreamingContext context)
{
}
}
}