using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Data { /// Represents the exception that is thrown when you try to insert a null value into a column where is set to . // Token: 0x0200001F RID: 31 [Token(Token = "0x200001F")] [Serializable] public class NoNullAllowedException : DataException { /// Initializes a new instance of the class with serialization information. /// The data that is required to serialize or deserialize an object. /// Description of the source and destination of the specified serialized stream. // Token: 0x06000152 RID: 338 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000152")] [Address(RVA = "0x9F3E90", Offset = "0x9F2E90", VA = "0x1809F3E90")] protected NoNullAllowedException(SerializationInfo info, StreamingContext context) { } /// Initializes a new instance of the class. // Token: 0x06000153 RID: 339 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000153")] [Address(RVA = "0x9F3E40", Offset = "0x9F2E40", VA = "0x1809F3E40")] public NoNullAllowedException() { } /// Initializes a new instance of the class with the specified string. /// The string to display when the exception is thrown. // Token: 0x06000154 RID: 340 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000154")] [Address(RVA = "0x9F3E20", Offset = "0x9F2E20", VA = "0x1809F3E20")] public NoNullAllowedException(string s) { } } }