summary refs log tree commit diff
path: root/crypto/src/cmp
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-06-24 15:07:29 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-06-24 15:07:29 +0700
commitb72579c4b1200459f959bcd6a25364e239420573 (patch)
tree5e566cc2b7972cd8ccebece92d879bddc800393d /crypto/src/cmp
parentRemove certpath from PkixCertPathValidatorException (diff)
downloadBouncyCastle.NET-ed25519-b72579c4b1200459f959bcd6a25364e239420573.tar.xz
Cleanup Exception classes
Diffstat (limited to 'crypto/src/cmp')
-rw-r--r--crypto/src/cmp/CmpException.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/src/cmp/CmpException.cs b/crypto/src/cmp/CmpException.cs
index 6594e8f2a..6d3271a20 100644
--- a/crypto/src/cmp/CmpException.cs
+++ b/crypto/src/cmp/CmpException.cs
@@ -1,11 +1,14 @@
 using System;
+using System.Runtime.Serialization;
 
 namespace Org.BouncyCastle.Cmp
 {
+    [Serializable]
     public class CmpException
         : Exception
     {
         public CmpException()
+            : base()
         {
         }
 
@@ -18,5 +21,10 @@ namespace Org.BouncyCastle.Cmp
             : base(message, innerException)
         {
         }
+
+        protected CmpException(SerializationInfo info, StreamingContext context)
+            : base(info, context)
+        {
+        }
     }
 }