Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

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 for errors in an arithmetic, casting, or conversion operation.</summary>
// Token: 0x020000B9 RID: 185
[Token(Token = "0x20000B9")]
[ComVisible(true)]
[Serializable]
public class ArithmeticException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.ArithmeticException" /> class.</summary>
// Token: 0x06000514 RID: 1300 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000514")]
[Address(RVA = "0x2D03650", Offset = "0x2D02650", VA = "0x182D03650")]
public ArithmeticException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ArithmeticException" /> class with a specified error message.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
// Token: 0x06000515 RID: 1301 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000515")]
[Address(RVA = "0x2D036B0", Offset = "0x2D026B0", VA = "0x182D036B0")]
public ArithmeticException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ArithmeticException" /> 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, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// Token: 0x06000516 RID: 1302 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000516")]
[Address(RVA = "0x2D03620", Offset = "0x2D02620", VA = "0x182D03620")]
public ArithmeticException(string message, Exception innerException)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.ArithmeticException" /> 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: 0x06000517 RID: 1303 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000517")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected ArithmeticException(SerializationInfo info, StreamingContext context)
{
}
}
}