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: 0x020000E4 RID: 228
[Token(Token = "0x20000E4")]
[ComVisible(true)]
[Serializable]
public class EntryPointNotFoundException : TypeLoadException
{
/// Initializes a new instance of the class.
// Token: 0x0600087E RID: 2174 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600087E")]
[Address(RVA = "0x71C070", Offset = "0x71B070", VA = "0x18071C070")]
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: 0x0600087F RID: 2175 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600087F")]
[Address(RVA = "0x71C0C0", Offset = "0x71B0C0", VA = "0x18071C0C0")]
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: 0x06000880 RID: 2176 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000880")]
[Address(RVA = "0x71AC20", Offset = "0x719C20", VA = "0x18071AC20")]
protected EntryPointNotFoundException(SerializationInfo info, StreamingContext context)
{
}
}
}