summary refs log tree commit diff
path: root/crypto/src/x509/store/NoSuchStoreException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/x509/store/NoSuchStoreException.cs')
-rw-r--r--crypto/src/x509/store/NoSuchStoreException.cs18
1 files changed, 10 insertions, 8 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)
 		{
 		}
 	}