This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
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: 0x020000B2 RID: 178
[Token(Token = "0x20000B2")]
[ComVisible(true)]
[Serializable]
public class ArithmeticException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.ArithmeticException" /> class.</summary>
// Token: 0x060004F9 RID: 1273 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004F9")]
[Address(RVA = "0x26BF960", Offset = "0x26BE760", VA = "0x1826BF960")]
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: 0x060004FA RID: 1274 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004FA")]
[Address(RVA = "0x26BF9C0", Offset = "0x26BE7C0", VA = "0x1826BF9C0")]
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: 0x060004FB RID: 1275 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004FB")]
[Address(RVA = "0x26BF930", Offset = "0x26BE730", VA = "0x1826BF930")]
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: 0x060004FC RID: 1276 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004FC")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected ArithmeticException(SerializationInfo info, StreamingContext context)
{
}
}
}