using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Configuration { /// Provides an exception for read-only objects. // Token: 0x020003D3 RID: 979 [Token(Token = "0x20003D3")] [Serializable] public class SettingsPropertyIsReadOnlyException : Exception { /// Initializes a new instance of the class. // Token: 0x0600199B RID: 6555 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600199B")] [Address(RVA = "0x28AC710", Offset = "0x28AB510", VA = "0x1828AC710")] public SettingsPropertyIsReadOnlyException() { } /// Initializes a new instance of the class based on the supplied parameters. /// The object that holds the serialized object data about the exception being thrown. /// The object that contains contextual information about the source or destination of the serialized stream. // Token: 0x0600199C RID: 6556 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600199C")] [Address(RVA = "0x28AC740", Offset = "0x28AB540", VA = "0x1828AC740")] protected SettingsPropertyIsReadOnlyException(SerializationInfo info, StreamingContext context) { } /// Initializes a new instance of the class based on a supplied parameter. /// A string containing an exception message. // Token: 0x0600199D RID: 6557 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600199D")] [Address(RVA = "0x28AC770", Offset = "0x28AB570", VA = "0x1828AC770")] public SettingsPropertyIsReadOnlyException(string message) { } /// Initializes a new instance of the class based on supplied parameters. /// A string containing an exception message. /// The exception that is the cause of the current exception. // Token: 0x0600199E RID: 6558 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600199E")] [Address(RVA = "0x28AC6E0", Offset = "0x28AB4E0", VA = "0x1828AC6E0")] public SettingsPropertyIsReadOnlyException(string message, Exception innerException) { } } }