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

43 lines
1.7 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when an array with the wrong number of dimensions is passed to a method.</summary>
// Token: 0x0200012D RID: 301
[Token(Token = "0x200012D")]
[ComVisible(true)]
[Serializable]
public class RankException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.RankException" /> class.</summary>
// Token: 0x06000AD6 RID: 2774 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AD6")]
[Address(RVA = "0x2A177E0", Offset = "0x2A165E0", VA = "0x182A177E0")]
public RankException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.RankException" /> class with a specified error message.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
// Token: 0x06000AD7 RID: 2775 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AD7")]
[Address(RVA = "0x2A177B0", Offset = "0x2A165B0", VA = "0x182A177B0")]
public RankException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.RankException" /> class with serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination.</param>
// Token: 0x06000AD8 RID: 2776 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000AD8")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected RankException(SerializationInfo info, StreamingContext context)
{
}
}
}