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) { } } }