summary refs log tree commit diff
path: root/Crypto/src/crypto/CryptoException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Crypto/src/crypto/CryptoException.cs')
-rw-r--r--Crypto/src/crypto/CryptoException.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/Crypto/src/crypto/CryptoException.cs b/Crypto/src/crypto/CryptoException.cs
new file mode 100644

index 000000000..c012063bb --- /dev/null +++ b/Crypto/src/crypto/CryptoException.cs
@@ -0,0 +1,25 @@ +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) + { + } + } +}