Initial Commit
This commit is contained in:
25
iTechSharp/srcbc/crypto/CryptoException.cs
Normal file
25
iTechSharp/srcbc/crypto/CryptoException.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user