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: 0x020000E0 RID: 224
[Token(Token = "0x20000E0")]
[ComVisible(true)]
[Serializable]
public class DllNotFoundException : TypeLoadException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x0600084D RID: 2125 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600084D")]
[Address(RVA = "0x71AC40", Offset = "0x719C40", VA = "0x18071AC40")]
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: 0x0600084E RID: 2126 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600084E")]
[Address(RVA = "0x71AC00", Offset = "0x719C00", VA = "0x18071AC00")]
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: 0x0600084F RID: 2127 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600084F")]
[Address(RVA = "0x71AC20", Offset = "0x719C20", VA = "0x18071AC20")]
protected DllNotFoundException(SerializationInfo info, StreamingContext context)
{
}
}
}