using System; using Cpp2IlInjected; namespace System.Data.SqlTypes { /// The exception that is thrown when the property of a structure is set to null. // Token: 0x020000B2 RID: 178 [Token(Token = "0x20000B2")] [Serializable] public sealed class SqlNullValueException : SqlTypeException { /// Initializes a new instance of the class with a system-supplied message that describes the error. // Token: 0x06000ABC RID: 2748 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000ABC")] [Address(RVA = "0xBD7AD0", Offset = "0xBD6AD0", VA = "0x180BD7AD0")] public SqlNullValueException() { } /// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. /// The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture. /// The exception that is the cause of the current exception. If the innerException parameter is not , the current exception is raised in a block that handles the inner exception. // Token: 0x06000ABD RID: 2749 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000ABD")] [Address(RVA = "0xBD7AB0", Offset = "0xBD6AB0", VA = "0x180BD7AB0")] public SqlNullValueException(string message, Exception e) { } } }