Files
sharpcompress/SharpCompress/Crypto/CryptoException.cs
2013-07-27 08:30:20 +01:00

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)
{
}
}
}