using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when there is an attempt to divide an integral or value by zero. // Token: 0x020000DF RID: 223 [Token(Token = "0x20000DF")] [ComVisible(true)] [Serializable] public class DivideByZeroException : ArithmeticException { /// Initializes a new instance of the class. // Token: 0x0600084A RID: 2122 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600084A")] [Address(RVA = "0x71AB70", Offset = "0x719B70", VA = "0x18071AB70")] public DivideByZeroException() { } /// Initializes a new instance of the class with a specified error message. /// A that describes the error. // Token: 0x0600084B RID: 2123 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600084B")] [Address(RVA = "0x71ABE0", Offset = "0x719BE0", VA = "0x18071ABE0")] public DivideByZeroException(string message) { } /// Initializes a new instance of the class with serialized data. /// The object that holds the serialized object data. /// The contextual information about the source or destination. // 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) { } } }