using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System { /// The exception that is thrown when a DLL specified in a DLL import cannot be found. // Token: 0x020000D9 RID: 217 [Token(Token = "0x20000D9")] [ComVisible(true)] [Serializable] public class DllNotFoundException : TypeLoadException { /// Initializes a new instance of the class with default properties. // Token: 0x06000824 RID: 2084 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000824")] [Address(RVA = "0x1E8B1A0", Offset = "0x1E89FA0", VA = "0x181E8B1A0")] public DllNotFoundException() { } /// Initializes a new instance of the class with a specified error message. /// The error message that explains the reason for the exception. // Token: 0x06000825 RID: 2085 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000825")] [Address(RVA = "0x1E8B160", Offset = "0x1E89F60", VA = "0x181E8B160")] public DllNotFoundException(string message) { } /// Initializes a new instance of the class with serialized data. /// The that holds the serialized object data about the exception being thrown. /// The that contains contextual information about the source or destination. // Token: 0x06000826 RID: 2086 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000826")] [Address(RVA = "0x1E8B180", Offset = "0x1E89F80", VA = "0x181E8B180")] protected DllNotFoundException(SerializationInfo info, StreamingContext context) { } } }