using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when an array with the wrong number of dimensions is passed to a method.
// Token: 0x02000134 RID: 308
[Token(Token = "0x2000134")]
[ComVisible(true)]
[Serializable]
public class RankException : SystemException
{
/// Initializes a new instance of the class.
// Token: 0x06000B08 RID: 2824 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B08")]
[Address(RVA = "0x2D7C2D0", Offset = "0x2D7B2D0", VA = "0x182D7C2D0")]
public RankException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// A that describes the error.
// Token: 0x06000B09 RID: 2825 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B09")]
[Address(RVA = "0x2D7C2A0", Offset = "0x2D7B2A0", VA = "0x182D7C2A0")]
public RankException(string message)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
// Token: 0x06000B0A RID: 2826 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000B0A")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected RankException(SerializationInfo info, StreamingContext context)
{
}
}
}