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: 0x02000155 RID: 341 [Token(Token = "0x2000155")] [ComVisible(true)] [Serializable] public class UnauthorizedAccessException : SystemException { /// Initializes a new instance of the class. // Token: 0x06000E44 RID: 3652 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000E44")] [Address(RVA = "0x3287AB0", Offset = "0x32868B0", VA = "0x183287AB0")] public UnauthorizedAccessException() { } /// Initializes a new instance of the class with a specified error message. /// The message that describes the error. // Token: 0x06000E45 RID: 3653 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000E45")] [Address(RVA = "0x3287B10", Offset = "0x3286910", VA = "0x183287B10")] 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: 0x06000E46 RID: 3654 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000E46")] [Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")] protected UnauthorizedAccessException(SerializationInfo info, StreamingContext context) { } } }