summary refs log tree commit diff
path: root/crypto/src/tsp/TSPException.cs
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/tsp/TSPException.cs
parentRemove certpath from PkixCertPathValidatorException (diff)
downloadBouncyCastle.NET-ed25519-b72579c4b1200459f959bcd6a25364e239420573.tar.xz
Cleanup Exception classes
Diffstat (limited to 'crypto/src/tsp/TSPException.cs')
-rw-r--r--crypto/src/tsp/TSPException.cs18
1 files changed, 10 insertions, 8 deletions
diff --git a/crypto/src/tsp/TSPException.cs b/crypto/src/tsp/TSPException.cs
index 0213490d9..2fe7fdc90 100644
--- a/crypto/src/tsp/TSPException.cs
+++ b/crypto/src/tsp/TSPException.cs
@@ -1,27 +1,29 @@
 using System;
+using System.Runtime.Serialization;
 
 namespace Org.BouncyCastle.Tsp
 {
-#if !PORTABLE
     [Serializable]
-#endif
     public class TspException
 		: Exception
 	{
 		public TspException()
+			: base()
 		{
 		}
 
-		public TspException(
-			string message)
+		public TspException(string message)
 			: base(message)
 		{
 		}
 
-		public TspException(
-			string		message,
-			Exception	e)
-			: base(message, e)
+		public TspException(string message, Exception innerException)
+			: base(message, innerException)
+		{
+		}
+
+		protected TspException(SerializationInfo info, StreamingContext context)
+			: base(info, context)
 		{
 		}
 	}