m
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
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: 0x0200015C RID: 348
|
||||
[Token(Token = "0x200015C")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public class UnauthorizedAccessException : SystemException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.UnauthorizedAccessException" /> class.</summary>
|
||||
// Token: 0x06000E78 RID: 3704 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000E78")]
|
||||
[Address(RVA = "0x3BB8090", Offset = "0x3BB7090", VA = "0x183BB8090")]
|
||||
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: 0x06000E79 RID: 3705 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000E79")]
|
||||
[Address(RVA = "0x3BB80F0", Offset = "0x3BB70F0", VA = "0x183BB80F0")]
|
||||
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: 0x06000E7A RID: 3706 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000E7A")]
|
||||
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
||||
protected UnauthorizedAccessException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user