summary refs log tree commit diff
path: root/crypto/src/tls/TlsException.cs
blob: c6d7a1916bbcf7602d692f3c38f258eee252d40c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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)
        {
        }
    }
}