using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when the operating system denies access because of an I/O error or a specific type of security error. // Token: 0x0200015C RID: 348 [Token(Token = "0x200015C")] [ComVisible(true)] [Serializable] public class UnauthorizedAccessException : SystemException { /// Initializes a new instance of the class. // Token: 0x06000E78 RID: 3704 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000E78")] [Address(RVA = "0x3BB8090", Offset = "0x3BB7090", VA = "0x183BB8090")] public UnauthorizedAccessException() { } /// Initializes a new instance of the class with a specified error message. /// The message that describes the error. // Token: 0x06000E79 RID: 3705 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000E79")] [Address(RVA = "0x3BB80F0", Offset = "0x3BB70F0", VA = "0x183BB80F0")] public UnauthorizedAccessException(string message) { } /// Initializes a new instance of the class with serialized data. /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. // Token: 0x06000E7A RID: 3706 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000E7A")] [Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")] protected UnauthorizedAccessException(SerializationInfo info, StreamingContext context) { } } }