using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Configuration { /// Provides an exception for objects that are not found. // Token: 0x020003D4 RID: 980 [Token(Token = "0x20003D4")] [Serializable] public class SettingsPropertyNotFoundException : Exception { /// Initializes a new instance of the class. // Token: 0x0600199F RID: 6559 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600199F")] [Address(RVA = "0x28AC7A0", Offset = "0x28AB5A0", VA = "0x1828AC7A0")] 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: 0x060019A0 RID: 6560 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60019A0")] [Address(RVA = "0x28AC7D0", Offset = "0x28AB5D0", VA = "0x1828AC7D0")] 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: 0x060019A1 RID: 6561 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60019A1")] [Address(RVA = "0x28AC830", Offset = "0x28AB630", VA = "0x1828AC830")] 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: 0x060019A2 RID: 6562 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60019A2")] [Address(RVA = "0x28AC800", Offset = "0x28AB600", VA = "0x1828AC800")] public SettingsPropertyNotFoundException(string message, Exception innerException) { } } }