using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when there is an invalid attempt to access a private or protected field inside a class.
// Token: 0x020000EF RID: 239
[Token(Token = "0x20000EF")]
[ComVisible(true)]
[Serializable]
public class FieldAccessException : MemberAccessException
{
/// Initializes a new instance of the class.
// Token: 0x060008EF RID: 2287 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008EF")]
[Address(RVA = "0x7241D0", Offset = "0x7231D0", VA = "0x1807241D0")]
public FieldAccessException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The error message that explains the reason for the exception.
// Token: 0x060008F0 RID: 2288 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008F0")]
[Address(RVA = "0x724220", Offset = "0x723220", VA = "0x180724220")]
public FieldAccessException(string message)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
// Token: 0x060008F1 RID: 2289 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008F1")]
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
protected FieldAccessException(SerializationInfo info, StreamingContext context)
{
}
}
}