Initial Commit
This commit is contained in:
11
iTechSharp/srcbc/crypto/tls/TlsException.cs
Normal file
11
iTechSharp/srcbc/crypto/tls/TlsException.cs
Normal file
@@ -0,0 +1,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) { }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user