22 lines
305 B
C#
22 lines
305 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Crypto;
|
|
|
|
[Serializable]
|
|
public class CryptoException : Exception
|
|
{
|
|
public CryptoException()
|
|
{
|
|
}
|
|
|
|
public CryptoException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public CryptoException(string message, Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|