43 lines
1.8 KiB
C#
43 lines
1.8 KiB
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|