Files
Aug2021-Cpp2IL-Dump/System/Configuration/SettingsPropertyNotFoundException.cs
2026-04-10 22:50:51 +02:00

51 lines
2.6 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides an exception for <see cref="T:System.Configuration.SettingsProperty" /> objects that are not found.</summary>
// Token: 0x020003D4 RID: 980
[Token(Token = "0x20003D4")]
[Serializable]
public class SettingsPropertyNotFoundException : Exception
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyNotFoundException" /> class.</summary>
// Token: 0x0600199F RID: 6559 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600199F")]
[Address(RVA = "0x28AC7A0", Offset = "0x28AB5A0", VA = "0x1828AC7A0")]
public SettingsPropertyNotFoundException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyNotFoundException" /> class, based on supplied parameters.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination of the serialized stream.</param>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyNotFoundException" /> class, based on a supplied parameter.</summary>
/// <param name="message">A string containing an exception message.</param>
// Token: 0x060019A1 RID: 6561 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60019A1")]
[Address(RVA = "0x28AC830", Offset = "0x28AB630", VA = "0x1828AC830")]
public SettingsPropertyNotFoundException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyNotFoundException" /> class, based on supplied parameters.</summary>
/// <param name="message">A string containing an exception message.</param>
/// <param name="innerException">The exception that is the cause of the current exception.</param>
// 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)
{
}
}
}