oh dear
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 there is an invalid attempt to access a private or protected field inside a class.</summary>
|
||||
// Token: 0x020000E8 RID: 232
|
||||
[Token(Token = "0x20000E8")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public class FieldAccessException : MemberAccessException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.FieldAccessException" /> class.</summary>
|
||||
// Token: 0x060008C5 RID: 2245 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60008C5")]
|
||||
[Address(RVA = "0x1E94630", Offset = "0x1E93430", VA = "0x181E94630")]
|
||||
public FieldAccessException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.FieldAccessException" /> class with a specified error message.</summary>
|
||||
/// <param name="message">The error message that explains the reason for the exception.</param>
|
||||
// Token: 0x060008C6 RID: 2246 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60008C6")]
|
||||
[Address(RVA = "0x1E94680", Offset = "0x1E93480", VA = "0x181E94680")]
|
||||
public FieldAccessException(string message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.FieldAccessException" /> class with serialized data.</summary>
|
||||
/// <param name="info">The object that holds the serialized object data.</param>
|
||||
/// <param name="context">The contextual information about the source or destination.</param>
|
||||
// Token: 0x060008C7 RID: 2247 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60008C7")]
|
||||
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
|
||||
protected FieldAccessException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user