summary refs log tree commit diff
path: root/crypto/src/pkcs/PkcsException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/pkcs/PkcsException.cs')
-rw-r--r--crypto/src/pkcs/PkcsException.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/crypto/src/pkcs/PkcsException.cs b/crypto/src/pkcs/PkcsException.cs
new file mode 100644
index 000000000..f82d36724
--- /dev/null
+++ b/crypto/src/pkcs/PkcsException.cs
@@ -0,0 +1,18 @@
+using System;
+
+namespace Org.BouncyCastle.Pkcs
+{
+    /// <summary>
+    /// Base exception for PKCS related issues.
+    /// </summary>
+    public class PkcsException : Exception
+    {
+        public PkcsException(String message) : base(message)
+        {
+        }
+
+        public PkcsException(String message, Exception underlying) : base(message, underlying)
+        {
+        }
+    }
+}