mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 05:25:41 +00:00
25 lines
459 B
C#
25 lines
459 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Crypto
|
|
{
|
|
public class CryptoException
|
|
: Exception
|
|
{
|
|
public CryptoException()
|
|
{
|
|
}
|
|
|
|
public CryptoException(
|
|
string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public CryptoException(
|
|
string message,
|
|
Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|
|
} |