This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when there is an attempt to divide an integral or <see cref="T:System.Decimal" /> value by zero.</summary>
// Token: 0x020000DF RID: 223
[Token(Token = "0x20000DF")]
[ComVisible(true)]
[Serializable]
public class DivideByZeroException : ArithmeticException
{
/// <summary>Initializes a new instance of the <see cref="T:System.DivideByZeroException" /> class.</summary>
// Token: 0x0600084A RID: 2122 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600084A")]
[Address(RVA = "0x71AB70", Offset = "0x719B70", VA = "0x18071AB70")]
public DivideByZeroException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DivideByZeroException" /> class with a specified error message.</summary>
/// <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
// Token: 0x0600084B RID: 2123 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600084B")]
[Address(RVA = "0x71ABE0", Offset = "0x719BE0", VA = "0x18071ABE0")]
public DivideByZeroException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.DivideByZeroException" /> 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: 0x0600084C RID: 2124 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600084C")]
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
protected DivideByZeroException(SerializationInfo info, StreamingContext context)
{
}
}
}