using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when there is an attempt to read or write protected memory.
// Token: 0x0200009D RID: 157
[Token(Token = "0x200009D")]
[ComVisible(true)]
[Serializable]
public class AccessViolationException : SystemException
{
/// Initializes a new instance of the class with a system-supplied message that describes the error.
// Token: 0x0600049E RID: 1182 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600049E")]
[Address(RVA = "0x2CFF730", Offset = "0x2CFE730", VA = "0x182CFF730")]
public AccessViolationException()
{
}
/// Initializes a new instance of the class with serialized data.
/// The that holds the serialized object data.
/// The that contains contextual information about the source or destination.
// Token: 0x0600049F RID: 1183 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600049F")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected AccessViolationException(SerializationInfo info, StreamingContext context)
{
}
}
}