summary refs log tree commit diff
path: root/crypto/src/openssl/EncryptionException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/openssl/EncryptionException.cs')
-rw-r--r--crypto/src/openssl/EncryptionException.cs22
1 files changed, 14 insertions, 8 deletions
diff --git a/crypto/src/openssl/EncryptionException.cs b/crypto/src/openssl/EncryptionException.cs
index c17eb99c4..414f8f68b 100644
--- a/crypto/src/openssl/EncryptionException.cs
+++ b/crypto/src/openssl/EncryptionException.cs
@@ -1,24 +1,30 @@
 using System;
 using System.IO;
+using System.Runtime.Serialization;
 
 namespace Org.BouncyCastle.Security
 {
-#if !PORTABLE
     [Serializable]
-#endif
     public class EncryptionException
 		: IOException
 	{
-		public EncryptionException(
-			string message)
+		public EncryptionException()
+			: base()
+		{
+		}
+
+		public EncryptionException(string message)
 			: base(message)
 		{
 		}
 
-		public EncryptionException(
-			string		message,
-			Exception	exception)
-			: base(message, exception)
+		public EncryptionException(string message, Exception innerException)
+			: base(message, innerException)
+		{
+		}
+
+		protected EncryptionException(SerializationInfo info, StreamingContext context)
+			: base(info, context)
 		{
 		}
 	}