summary refs log tree commit diff
path: root/crypto/src/tls/TlsException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/tls/TlsException.cs')
-rw-r--r--crypto/src/tls/TlsException.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/crypto/src/tls/TlsException.cs b/crypto/src/tls/TlsException.cs
new file mode 100644
index 000000000..c6d7a1916
--- /dev/null
+++ b/crypto/src/tls/TlsException.cs
@@ -0,0 +1,24 @@
+using System;
+using System.IO;
+
+namespace Org.BouncyCastle.Tls
+{
+    public class TlsException
+        : IOException
+    {
+        public TlsException()
+            : base()
+        {
+        }
+
+        public TlsException(string message)
+            : base(message)
+        {
+        }
+
+        public TlsException(string message, Exception cause)
+            : base(message, cause)
+        {
+        }
+    }
+}