using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Configuration { /// Provides an exception for objects that are not found. // Token: 0x020003D0 RID: 976 [Token(Token = "0x20003D0")] [Serializable] public class SettingsPropertyNotFoundException : Exception { /// Initializes a new instance of the class. // Token: 0x06001988 RID: 6536 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001988")] [Address(RVA = "0x2F47250", Offset = "0x2F46250", VA = "0x182F47250")] public SettingsPropertyNotFoundException() { } /// Initializes a new instance of the class, based on 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: 0x06001989 RID: 6537 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001989")] [Address(RVA = "0x2F47280", Offset = "0x2F46280", VA = "0x182F47280")] protected SettingsPropertyNotFoundException(SerializationInfo info, StreamingContext context) { } /// Initializes a new instance of the class, based on a supplied parameter. /// A string containing an exception message. // Token: 0x0600198A RID: 6538 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600198A")] [Address(RVA = "0x2F472E0", Offset = "0x2F462E0", VA = "0x182F472E0")] public SettingsPropertyNotFoundException(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: 0x0600198B RID: 6539 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600198B")] [Address(RVA = "0x2F472B0", Offset = "0x2F462B0", VA = "0x182F472B0")] public SettingsPropertyNotFoundException(string message, Exception innerException) { } } }