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: 0x020000E8 RID: 232
[Token(Token = "0x20000E8")]
[ComVisible(true)]
[Serializable]
public class FieldAccessException : MemberAccessException
{
/// Initializes a new instance of the class.
// Token: 0x060008C5 RID: 2245 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008C5")]
[Address(RVA = "0x1E94630", Offset = "0x1E93430", VA = "0x181E94630")]
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: 0x060008C6 RID: 2246 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008C6")]
[Address(RVA = "0x1E94680", Offset = "0x1E93480", VA = "0x181E94680")]
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: 0x060008C7 RID: 2247 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60008C7")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
protected FieldAccessException(SerializationInfo info, StreamingContext context)
{
}
}
}