summary refs log tree commit diff
path: root/crypto/src/asn1/Asn1ParsingException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/asn1/Asn1ParsingException.cs')
-rw-r--r--crypto/src/asn1/Asn1ParsingException.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/crypto/src/asn1/Asn1ParsingException.cs b/crypto/src/asn1/Asn1ParsingException.cs
new file mode 100644
index 000000000..40e5da480
--- /dev/null
+++ b/crypto/src/asn1/Asn1ParsingException.cs
@@ -0,0 +1,29 @@
+using System;
+
+namespace Org.BouncyCastle.Asn1
+{
+#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT)
+    [Serializable]
+#endif
+    public class Asn1ParsingException
+		: InvalidOperationException
+	{
+		public Asn1ParsingException()
+			: base()
+		{
+		}
+
+		public Asn1ParsingException(
+			string message)
+			: base(message)
+		{
+		}
+
+		public Asn1ParsingException(
+			string		message,
+			Exception	exception)
+			: base(message, exception)
+		{
+		}
+	}
+}