Files
sharpcompress/SharpCompress/Crypto/CryptoException.cs

25 lines
459 B
C#
Raw Permalink Normal View History

2013-07-27 08:30:20 +01:00
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)
{
}
}
}