summary refs log tree commit diff
path: root/crypto/src/cms/CMSException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/cms/CMSException.cs')
-rw-r--r--crypto/src/cms/CMSException.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/crypto/src/cms/CMSException.cs b/crypto/src/cms/CMSException.cs
new file mode 100644
index 000000000..5a6e33502
--- /dev/null
+++ b/crypto/src/cms/CMSException.cs
@@ -0,0 +1,28 @@
+using System;
+
+namespace Org.BouncyCastle.Cms
+{
+#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT)
+    [Serializable]
+#endif
+    public class CmsException
+		: Exception
+	{
+		public CmsException()
+		{
+		}
+
+		public CmsException(
+			string msg)
+			: base(msg)
+		{
+		}
+
+		public CmsException(
+			string		msg,
+			Exception	e)
+			: base(msg, e)
+		{
+		}
+	}
+}