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

43 lines
2.0 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// <summary>The exception that is thrown when the operating system denies access because of an I/O error or a specific type of security error.</summary>
// Token: 0x02000155 RID: 341
[Token(Token = "0x2000155")]
[ComVisible(true)]
[Serializable]
public class UnauthorizedAccessException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.UnauthorizedAccessException" /> class.</summary>
// Token: 0x06000E44 RID: 3652 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E44")]
[Address(RVA = "0x3287AB0", Offset = "0x32868B0", VA = "0x183287AB0")]
public UnauthorizedAccessException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.UnauthorizedAccessException" /> class with a specified error message.</summary>
/// <param name="message">The message that describes the error.</param>
// Token: 0x06000E45 RID: 3653 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000E45")]
[Address(RVA = "0x3287B10", Offset = "0x3286910", VA = "0x183287B10")]
public UnauthorizedAccessException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.UnauthorizedAccessException" /> class with serialized data.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
// 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)
{
}
}
}