iTextSharp-LGPL/src/core/srcbc/crypto/CryptoException.cs

26 lines
423 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)
{
}
}
}