51 lines
2.6 KiB
C#
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: 0x020003D0 RID: 976
|
|
[Token(Token = "0x20003D0")]
|
|
[Serializable]
|
|
public class SettingsPropertyNotFoundException : Exception
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsPropertyNotFoundException" /> class.</summary>
|
|
// Token: 0x06001988 RID: 6536 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001988")]
|
|
[Address(RVA = "0x2F47250", Offset = "0x2F46250", VA = "0x182F47250")]
|
|
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: 0x06001989 RID: 6537 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001989")]
|
|
[Address(RVA = "0x2F47280", Offset = "0x2F46280", VA = "0x182F47280")]
|
|
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: 0x0600198A RID: 6538 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600198A")]
|
|
[Address(RVA = "0x2F472E0", Offset = "0x2F462E0", VA = "0x182F472E0")]
|
|
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: 0x0600198B RID: 6539 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600198B")]
|
|
[Address(RVA = "0x2F472B0", Offset = "0x2F462B0", VA = "0x182F472B0")]
|
|
public SettingsPropertyNotFoundException(string message, Exception innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|