init commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace Org.BouncyCastle.Crypto.Tls;
|
||||
|
||||
public class TlsFatalAlertReceived : TlsException
|
||||
{
|
||||
private readonly byte alertDescription;
|
||||
|
||||
public virtual byte AlertDescription => alertDescription;
|
||||
|
||||
public TlsFatalAlertReceived(byte alertDescription)
|
||||
: base(Org.BouncyCastle.Crypto.Tls.AlertDescription.GetText(alertDescription), null)
|
||||
{
|
||||
this.alertDescription = alertDescription;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user