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: 0x020003DA RID: 986
[Token(Token = "0x20003DA")]
[ComVisible(true)]
[Serializable]
public class CryptographicUnexpectedOperationException : CryptographicException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x06002144 RID: 8516 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002144")]
[Address(RVA = "0x2DA1C00", Offset = "0x2DA0A00", VA = "0x182DA1C00")]
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: 0x06002145 RID: 8517 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002145")]
[Address(RVA = "0x2DA1C30", Offset = "0x2DA0A30", VA = "0x182DA1C30")]
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: 0x06002146 RID: 8518 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002146")]
[Address(RVA = "0x2DA1B60", Offset = "0x2DA0960", VA = "0x182DA1B60")]
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: 0x06002147 RID: 8519 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002147")]
[Address(RVA = "0x2DA1B30", Offset = "0x2DA0930", VA = "0x182DA1B30")]
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: 0x06002148 RID: 8520 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002148")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
protected CryptographicUnexpectedOperationException(SerializationInfo info, StreamingContext context)
{
}
}
}