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/openpgp/PgpKeyValidationException.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Crypto/src/openpgp/PgpKeyValidationException.cs (limited to 'Crypto/src/openpgp/PgpKeyValidationException.cs') diff --git a/Crypto/src/openpgp/PgpKeyValidationException.cs b/Crypto/src/openpgp/PgpKeyValidationException.cs new file mode 100644 index 000000000..da07f400f --- /dev/null +++ b/Crypto/src/openpgp/PgpKeyValidationException.cs @@ -0,0 +1,15 @@ +using System; + +namespace Org.BouncyCastle.Bcpg.OpenPgp +{ + /// + /// Thrown if the key checksum is invalid. + /// + public class PgpKeyValidationException + : PgpException + { + public PgpKeyValidationException() : base() {} + public PgpKeyValidationException(string message) : base(message) {} + public PgpKeyValidationException(string message, Exception exception) : base(message, exception) {} + } +} -- cgit 1.5.1