summary refs log tree commit diff
path: root/crypto/src/crypto/tls/TlsException.cs
blob: 18ca22a588c1d23915bb8abc662192706143d719 (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.Crypto.Tls
{
    public class TlsException
        : IOException
    {
        public TlsException()
            : base()
        {
        }

        public TlsException(string message)
            : base(message)
        {
        }

        public TlsException(string message, Exception cause)
            : base(message, cause)
        {
        }
    }
}