1 files changed, 26 insertions, 0 deletions
diff --git a/crypto/src/cmp/CmpException.cs b/crypto/src/cmp/CmpException.cs
new file mode 100644
index 000000000..7ecdf5af8
--- /dev/null
+++ b/crypto/src/cmp/CmpException.cs
@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+using System.Runtime.Serialization;
+using System.Text;
+
+namespace Org.BouncyCastle.Cmp
+{
+ public class CmpException : Exception
+ {
+ public CmpException()
+ {
+ }
+
+ public CmpException(string message) : base(message)
+ {
+ }
+
+ public CmpException(string message, Exception innerException) : base(message, innerException)
+ {
+ }
+
+ protected CmpException(SerializationInfo info, StreamingContext context) : base(info, context)
+ {
+ }
+ }
+}
|