using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System
{
/// The exception that is thrown when an attempt to load a class fails due to the absence of an entry method.
// Token: 0x020000DD RID: 221
[Token(Token = "0x20000DD")]
[ComVisible(true)]
[Serializable]
public class EntryPointNotFoundException : TypeLoadException
{
/// Initializes a new instance of the class.
// Token: 0x06000854 RID: 2132 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000854")]
[Address(RVA = "0x1E8C530", Offset = "0x1E8B330", VA = "0x181E8C530")]
public EntryPointNotFoundException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The error message that explains the reason for the exception.
// Token: 0x06000855 RID: 2133 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000855")]
[Address(RVA = "0x1E8C580", Offset = "0x1E8B380", VA = "0x181E8C580")]
public EntryPointNotFoundException(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: 0x06000856 RID: 2134 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000856")]
[Address(RVA = "0x1E8B180", Offset = "0x1E89F80", VA = "0x181E8B180")]
protected EntryPointNotFoundException(SerializationInfo info, StreamingContext context)
{
}
}
}