oh dear
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
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: 0x020000DD RID: 221
|
||||
[Token(Token = "0x20000DD")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public class EntryPointNotFoundException : TypeLoadException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.EntryPointNotFoundException" /> class.</summary>
|
||||
// Token: 0x06000854 RID: 2132 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000854")]
|
||||
[Address(RVA = "0x1E8C530", Offset = "0x1E8B330", VA = "0x181E8C530")]
|
||||
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: 0x06000855 RID: 2133 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000855")]
|
||||
[Address(RVA = "0x1E8C580", Offset = "0x1E8B380", VA = "0x181E8C580")]
|
||||
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: 0x06000856 RID: 2134 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000856")]
|
||||
[Address(RVA = "0x1E8B180", Offset = "0x1E89F80", VA = "0x181E8B180")]
|
||||
protected EntryPointNotFoundException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user