using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Security
{
/// The exception that is thrown when a security error is detected.
// Token: 0x020003C6 RID: 966
[Token(Token = "0x20003C6")]
[ComVisible(true)]
[Serializable]
public class SecurityException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x0600228D RID: 8845 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600228D")]
[Address(RVA = "0xD0BD50", Offset = "0xD0AD50", VA = "0x180D0BD50")]
public SecurityException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The error message that explains the reason for the exception.
// Token: 0x0600228E RID: 8846 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600228E")]
[Address(RVA = "0xD0BDC0", Offset = "0xD0ADC0", VA = "0x180D0BDC0")]
public SecurityException(string message)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
///
/// is .
// Token: 0x0600228F RID: 8847 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600228F")]
[Address(RVA = "0xD0BDE0", Offset = "0xD0ADE0", VA = "0x180D0BDE0")]
protected SecurityException(SerializationInfo info, StreamingContext context)
{
}
/// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception. If the parameter is not , the current exception is raised in a block that handles the inner exception.
// Token: 0x06002290 RID: 8848 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002290")]
[Address(RVA = "0xD0BDA0", Offset = "0xD0ADA0", VA = "0x180D0BDA0")]
public SecurityException(string message, Exception inner)
{
}
/// Sets the with information about the .
/// The that holds the serialized object data about the exception being thrown.
/// The that contains contextual information about the source or destination.
/// The parameter is .
// Token: 0x06002291 RID: 8849 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002291")]
[Address(RVA = "0xD0BC90", Offset = "0xD0AC90", VA = "0x180D0BC90", Slot = "10")]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// Returns a representation of the current .
/// A string representation of the current .
// Token: 0x06002292 RID: 8850 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002292")]
[Address(RVA = "0xD0BD40", Offset = "0xD0AD40", VA = "0x180D0BD40", Slot = "3")]
public override string ToString()
{
return null;
}
// Token: 0x0400133E RID: 4926
[global::Cpp2IlInjected.FieldOffset(Offset = "0x88")]
[Token(Token = "0x400133E")]
private string permissionState;
}
}