From 176743ab5faec2dd275b5efd3a2dd62c610f237a Mon Sep 17 00:00:00 2001 From: Oren Novotny Date: Wed, 26 Feb 2014 10:08:50 -0500 Subject: Add BouncyCastle PCL files --- Crypto/src/openssl/EncryptionException.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Crypto/src/openssl/EncryptionException.cs (limited to 'Crypto/src/openssl/EncryptionException.cs') diff --git a/Crypto/src/openssl/EncryptionException.cs b/Crypto/src/openssl/EncryptionException.cs new file mode 100644 index 000000000..043e8f899 --- /dev/null +++ b/Crypto/src/openssl/EncryptionException.cs @@ -0,0 +1,22 @@ +using System; +using System.IO; + +namespace Org.BouncyCastle.Security +{ + public class EncryptionException + : IOException + { + public EncryptionException( + string message) + : base(message) + { + } + + public EncryptionException( + string message, + Exception exception) + : base(message, exception) + { + } + } +} -- cgit 1.5.1