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