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/security/KeyException.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Crypto/src/security/KeyException.cs (limited to 'Crypto/src/security/KeyException.cs') diff --git a/Crypto/src/security/KeyException.cs b/Crypto/src/security/KeyException.cs new file mode 100644 index 000000000..f19264e5f --- /dev/null +++ b/Crypto/src/security/KeyException.cs @@ -0,0 +1,11 @@ +using System; + +namespace Org.BouncyCastle.Security +{ + public class KeyException : GeneralSecurityException + { + public KeyException() : base() { } + public KeyException(string message) : base(message) { } + public KeyException(string message, Exception exception) : base(message, exception) { } + } +} -- cgit 1.5.1