summary refs log tree commit diff
path: root/crypto/src/x509
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/x509
parentRemove certpath from PkixCertPathValidatorException (diff)
downloadBouncyCastle.NET-ed25519-b72579c4b1200459f959bcd6a25364e239420573.tar.xz
Cleanup Exception classes
Diffstat (limited to 'crypto/src/x509')
-rw-r--r--crypto/src/x509/store/NoSuchStoreException.cs18
-rw-r--r--crypto/src/x509/store/X509StoreException.cs18
2 files changed, 20 insertions, 16 deletions
diff --git a/crypto/src/x509/store/NoSuchStoreException.cs b/crypto/src/x509/store/NoSuchStoreException.cs
index bf6bdf76c..3acac536f 100644
--- a/crypto/src/x509/store/NoSuchStoreException.cs
+++ b/crypto/src/x509/store/NoSuchStoreException.cs
@@ -1,27 +1,29 @@
 using System;
+using System.Runtime.Serialization;
 
 namespace Org.BouncyCastle.X509.Store
 {
-#if !PORTABLE
     [Serializable]
-#endif
     public class NoSuchStoreException
 		: X509StoreException
 	{
 		public NoSuchStoreException()
+			: base()
 		{
 		}
 
-		public NoSuchStoreException(
-			string message)
+		public NoSuchStoreException(string message)
 			: base(message)
 		{
 		}
 
-		public NoSuchStoreException(
-			string		message,
-			Exception	e)
-			: base(message, e)
+		public NoSuchStoreException(string message, Exception innerException)
+			: base(message, innerException)
+		{
+		}
+
+		protected NoSuchStoreException(SerializationInfo info, StreamingContext context)
+			: base(info, context)
 		{
 		}
 	}
diff --git a/crypto/src/x509/store/X509StoreException.cs b/crypto/src/x509/store/X509StoreException.cs
index f697c116a..0ad32c2ef 100644
--- a/crypto/src/x509/store/X509StoreException.cs
+++ b/crypto/src/x509/store/X509StoreException.cs
@@ -1,27 +1,29 @@
 using System;
+using System.Runtime.Serialization;
 
 namespace Org.BouncyCastle.X509.Store
 {
-#if !PORTABLE
     [Serializable]
-#endif
     public class X509StoreException
 		: Exception
 	{
 		public X509StoreException()
+			: base()
 		{
 		}
 
-		public X509StoreException(
-			string message)
+		public X509StoreException(string message)
 			: base(message)
 		{
 		}
 
-		public X509StoreException(
-			string		message,
-			Exception	e)
-			: base(message, e)
+		public X509StoreException(string message, Exception innerException)
+			: base(message, innerException)
+		{
+		}
+
+		protected X509StoreException(SerializationInfo info, StreamingContext context)
+			: base(info, context)
 		{
 		}
 	}