Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

53 lines
2.5 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when a null reference (<see langword="Nothing" /> in Visual Basic) is passed to a method that does not accept it as a valid argument.</summary>
// Token: 0x020000B0 RID: 176
[Token(Token = "0x20000B0")]
[ComVisible(true)]
[Serializable]
public class ArgumentNullException : ArgumentException
{
/// <summary>Initializes a new instance of the <see cref="T:System.ArgumentNullException" /> class.</summary>
// Token: 0x060004ED RID: 1261 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004ED")]
[Address(RVA = "0x26BF1B0", Offset = "0x26BDFB0", VA = "0x1826BF1B0")]
public ArgumentNullException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ArgumentNullException" /> class with the name of the parameter that causes this exception.</summary>
/// <param name="paramName">The name of the parameter that caused the exception.</param>
// Token: 0x060004EE RID: 1262 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004EE")]
[Address(RVA = "0x26BF270", Offset = "0x26BE070", VA = "0x1826BF270")]
public ArgumentNullException(string paramName)
{
}
/// <summary>Initializes an instance of the <see cref="T:System.ArgumentNullException" /> class with a specified error message and the name of the parameter that causes this exception.</summary>
/// <param name="paramName">The name of the parameter that caused the exception.</param>
/// <param name="message">A message that describes the error.</param>
// Token: 0x060004EF RID: 1263 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004EF")]
[Address(RVA = "0x26BF220", Offset = "0x26BE020", VA = "0x1826BF220")]
public ArgumentNullException(string paramName, string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ArgumentNullException" /> class with serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">An object that describes the source or destination of the serialized data.</param>
// Token: 0x060004F0 RID: 1264 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004F0")]
[Address(RVA = "0x26BEF50", Offset = "0x26BDD50", VA = "0x1826BEF50")]
protected ArgumentNullException(SerializationInfo info, StreamingContext context)
{
}
}
}