using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when an attempt is made to access an element of an array or collection with an index that is outside its bounds.
// Token: 0x02000112 RID: 274
[Token(Token = "0x2000112")]
[ComVisible(true)]
[Serializable]
public sealed class IndexOutOfRangeException : SystemException
{
/// Initializes a new instance of the class.
// Token: 0x060009DD RID: 2525 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009DD")]
[Address(RVA = "0xCBE6B0", Offset = "0xCBD6B0", VA = "0x180CBE6B0")]
public IndexOutOfRangeException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x060009DE RID: 2526 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009DE")]
[Address(RVA = "0xCBE710", Offset = "0xCBD710", VA = "0x180CBE710")]
public IndexOutOfRangeException(string message)
{
}
// Token: 0x060009DF RID: 2527 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60009DF")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
internal IndexOutOfRangeException(SerializationInfo info, StreamingContext context)
{
}
}
}