12 lines
287 B
C#
12 lines
287 B
C#
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) { }
|
|
}
|
|
}
|