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: 0x0200012F RID: 303 [Token(Token = "0x200012F")] [ComVisible(true)] [Serializable] public class OverflowException : ArithmeticException { /// Initializes a new instance of the class. // Token: 0x06000AEE RID: 2798 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000AEE")] [Address(RVA = "0x2D78F70", Offset = "0x2D77F70", VA = "0x182D78F70")] public OverflowException() { } /// Initializes a new instance of the class with a specified error message. /// The message that describes the error. // Token: 0x06000AEF RID: 2799 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000AEF")] [Address(RVA = "0x2D78FD0", Offset = "0x2D77FD0", VA = "0x182D78FD0")] 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: 0x06000AF0 RID: 2800 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000AF0")] [Address(RVA = "0x2D78F40", Offset = "0x2D77F40", VA = "0x182D78F40")] 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: 0x06000AF1 RID: 2801 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000AF1")] [Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")] protected OverflowException(SerializationInfo info, StreamingContext context) { } } }