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: 0x020001C8 RID: 456
[Token(Token = "0x20001C8")]
[Serializable]
public class AuthenticationException : SystemException
{
/// Initializes a new instance of the class with no message.
// Token: 0x06000C28 RID: 3112 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C28")]
[Address(RVA = "0x7679B0", Offset = "0x7669B0", VA = "0x1807679B0")]
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: 0x06000C29 RID: 3113 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C29")]
[Address(RVA = "0x767A00", Offset = "0x766A00", VA = "0x180767A00")]
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: 0x06000C2A RID: 3114 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C2A")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected AuthenticationException(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
}
}
}