using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when an arithmetic, casting, or conversion operation in a checked context results in an overflow.
// Token: 0x02000128 RID: 296
[Token(Token = "0x2000128")]
[ComVisible(true)]
[Serializable]
public class OverflowException : ArithmeticException
{
/// Initializes a new instance of the class.
// Token: 0x06000ABC RID: 2748 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000ABC")]
[Address(RVA = "0x2A140B0", Offset = "0x2A12EB0", VA = "0x182A140B0")]
public OverflowException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x06000ABD RID: 2749 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000ABD")]
[Address(RVA = "0x2A14110", Offset = "0x2A12F10", VA = "0x182A14110")]
public OverflowException(string message)
{
}
/// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception. If the parameter is not a null reference ( in Visual Basic), the current exception is raised in a block that handles the inner exception.
// Token: 0x06000ABE RID: 2750 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000ABE")]
[Address(RVA = "0x2A14080", Offset = "0x2A12E80", VA = "0x182A14080")]
public OverflowException(string message, Exception innerException)
{
}
/// 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: 0x06000ABF RID: 2751 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000ABF")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
protected OverflowException(SerializationInfo info, StreamingContext context)
{
}
}
}