using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Data { /// Represents the exception that is thrown when you try to change the value of a read-only column. // Token: 0x02000020 RID: 32 [Token(Token = "0x2000020")] [Serializable] public class ReadOnlyException : 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: 0x06000155 RID: 341 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000155")] [Address(RVA = "0x9F54C0", Offset = "0x9F44C0", VA = "0x1809F54C0")] protected ReadOnlyException(SerializationInfo info, StreamingContext context) { } /// Initializes a new instance of the class. // Token: 0x06000156 RID: 342 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000156")] [Address(RVA = "0x9F5560", Offset = "0x9F4560", VA = "0x1809F5560")] public ReadOnlyException() { } /// Initializes a new instance of the class with the specified string. /// The string to display when the exception is thrown. // Token: 0x06000157 RID: 343 RVA: 0x0000206A File Offset: 0x0000026A [Token(Token = "0x6000157")] [Address(RVA = "0x9F5540", Offset = "0x9F4540", VA = "0x1809F5540")] public ReadOnlyException(string s) { } } }