26 lines
416 B
C#
26 lines
416 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Crypto
|
|
{
|
|
public abstract class CryptoException
|
|
: Exception
|
|
{
|
|
protected CryptoException()
|
|
{
|
|
}
|
|
|
|
protected CryptoException(
|
|
string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
protected CryptoException(
|
|
string message,
|
|
Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|
|
}
|