using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System
{
/// The exception that is thrown when an attempt is made to access an unloaded application domain.
/// 2
// Token: 0x02000633 RID: 1587
[ComVisible(true)]
[Serializable]
public class AppDomainUnloadedException : SystemException
{
/// Initializes a new instance of the class.
// Token: 0x06003AF6 RID: 15094 RVA: 0x000C94D4 File Offset: 0x000C76D4
public AppDomainUnloadedException()
: base(Locale.GetText("Can't access an unloaded application domain."))
{
base.HResult = -2146234348;
}
/// Initializes a new instance of the class with a specified error message.
/// The message that describes the error.
// Token: 0x06003AF7 RID: 15095 RVA: 0x000C94F4 File Offset: 0x000C76F4
public AppDomainUnloadedException(string message)
: base(message)
{
base.HResult = -2146234348;
}
/// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// The message that describes the error.
/// The exception that is the cause of the current exception. If the parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.
// Token: 0x06003AF8 RID: 15096 RVA: 0x000C9508 File Offset: 0x000C7708
public AppDomainUnloadedException(string message, Exception innerException)
: base(message, innerException)
{
base.HResult = -2146234348;
}
/// 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: 0x06003AF9 RID: 15097 RVA: 0x000C9520 File Offset: 0x000C7720
protected AppDomainUnloadedException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
// Token: 0x04001798 RID: 6040
private const int Result = -2146234348;
}
}