1 files changed, 21 insertions, 14 deletions
diff --git a/crypto/src/tls/TlsException.cs b/crypto/src/tls/TlsException.cs
index c6d7a1916..9c6d74bf4 100644
--- a/crypto/src/tls/TlsException.cs
+++ b/crypto/src/tls/TlsException.cs
@@ -1,24 +1,31 @@
using System;
using System.IO;
+using System.Runtime.Serialization;
namespace Org.BouncyCastle.Tls
{
- public class TlsException
+ [Serializable]
+ public class TlsException
: IOException
{
- public TlsException()
- : base()
- {
- }
+ public TlsException()
+ : base()
+ {
+ }
- public TlsException(string message)
- : base(message)
- {
- }
+ public TlsException(string message)
+ : base(message)
+ {
+ }
- public TlsException(string message, Exception cause)
- : base(message, cause)
- {
- }
- }
+ public TlsException(string message, Exception innerException)
+ : base(message, innerException)
+ {
+ }
+
+ protected TlsException(SerializationInfo info, StreamingContext context)
+ : base(info, context)
+ {
+ }
+ }
}
|