using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Security.Authentication
{
/// The exception that is thrown when authentication fails for an authentication stream.
// Token: 0x020001CC RID: 460
[Token(Token = "0x20001CC")]
[Serializable]
public class AuthenticationException : SystemException
{
/// Initializes a new instance of the class with no message.
// Token: 0x06000C3E RID: 3134 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C3E")]
[Address(RVA = "0x3F6080", Offset = "0x3F4E80", VA = "0x1803F6080")]
public AuthenticationException()
{
}
/// Initializes a new instance of the class with the specified message and inner exception.
/// A that describes the authentication failure.
/// The that is the cause of the current exception.
// Token: 0x06000C3F RID: 3135 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C3F")]
[Address(RVA = "0x3F60D0", Offset = "0x3F4ED0", VA = "0x1803F60D0")]
public AuthenticationException(string message, Exception innerException)
{
}
/// Initializes a new instance of the class from the specified instances of the and classes.
/// A instance that contains the information required to deserialize the new instance.
/// A instance.
// Token: 0x06000C40 RID: 3136 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C40")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected AuthenticationException(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
}
}
}