m
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
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: 0x0200012F RID: 303
|
||||
[Token(Token = "0x200012F")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public class OverflowException : ArithmeticException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.OverflowException" /> class.</summary>
|
||||
// Token: 0x06000AEE RID: 2798 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000AEE")]
|
||||
[Address(RVA = "0x2D78F70", Offset = "0x2D77F70", VA = "0x182D78F70")]
|
||||
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: 0x06000AEF RID: 2799 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000AEF")]
|
||||
[Address(RVA = "0x2D78FD0", Offset = "0x2D77FD0", VA = "0x182D78FD0")]
|
||||
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: 0x06000AF0 RID: 2800 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000AF0")]
|
||||
[Address(RVA = "0x2D78F40", Offset = "0x2D77F40", VA = "0x182D78F40")]
|
||||
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: 0x06000AF1 RID: 2801 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000AF1")]
|
||||
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
|
||||
protected OverflowException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user