summary refs log tree commit diff
path: root/Crypto/src/crypto/tls/TlsException.cs
blob: fa3e73273d710a6ae992effbaef436d95801062b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Org.BouncyCastle.Crypto.Tls
{
	public class TlsException : Exception
	{
		public TlsException() : base() { }
		public TlsException(string message) : base(message) { }
		public TlsException(string message, Exception exception) : base(message, exception) { }
	}
}