using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// The exception that is thrown when an unexpected operation occurs during a cryptographic operation.
// Token: 0x020003F6 RID: 1014
[Token(Token = "0x20003F6")]
[ComVisible(true)]
[Serializable]
public class CryptographicUnexpectedOperationException : CryptographicException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x06002350 RID: 9040 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002350")]
[Address(RVA = "0xC03920", Offset = "0xC02920", VA = "0x180C03920")]
public CryptographicUnexpectedOperationException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The error message that explains the reason for the exception.
// Token: 0x06002351 RID: 9041 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002351")]
[Address(RVA = "0xC03990", Offset = "0xC02990", VA = "0x180C03990")]
public CryptographicUnexpectedOperationException(string message)
{
}
/// Initializes a new instance of the class with a specified error message in the specified format.
/// The format used to output the error message.
/// The error message that explains the reason for the exception.
// Token: 0x06002352 RID: 9042 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002352")]
[Address(RVA = "0xC03870", Offset = "0xC02870", VA = "0x180C03870")]
public CryptographicUnexpectedOperationException(string format, string insert)
{
}
/// 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 error message that explains the reason for the exception.
/// The exception that is the cause of the current exception. If the parameter is not , the current exception is raised in a block that handles the inner exception.
// Token: 0x06002353 RID: 9043 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002353")]
[Address(RVA = "0xC03830", Offset = "0xC02830", VA = "0x180C03830")]
public CryptographicUnexpectedOperationException(string message, Exception inner)
{
}
/// 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: 0x06002354 RID: 9044 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002354")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected CryptographicUnexpectedOperationException(SerializationInfo info, StreamingContext context)
{
}
}
}