43 lines
1.8 KiB
C#
43 lines
1.8 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>The exception that is thrown when an attempt to load a class fails due to the absence of an entry method.</summary>
|
|
// Token: 0x020000E4 RID: 228
|
|
[Token(Token = "0x20000E4")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class EntryPointNotFoundException : TypeLoadException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.EntryPointNotFoundException" /> class.</summary>
|
|
// Token: 0x0600087E RID: 2174 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600087E")]
|
|
[Address(RVA = "0x71C070", Offset = "0x71B070", VA = "0x18071C070")]
|
|
public EntryPointNotFoundException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.EntryPointNotFoundException" /> class with a specified error message.</summary>
|
|
/// <param name="message">The error message that explains the reason for the exception.</param>
|
|
// Token: 0x0600087F RID: 2175 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600087F")]
|
|
[Address(RVA = "0x71C0C0", Offset = "0x71B0C0", VA = "0x18071C0C0")]
|
|
public EntryPointNotFoundException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.EntryPointNotFoundException" /> class with serialized data.</summary>
|
|
/// <param name="info">The object that holds the serialized object data.</param>
|
|
/// <param name="context">The contextual information about the source or destination.</param>
|
|
// 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)
|
|
{
|
|
}
|
|
}
|
|
}
|