You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
626 B
27 lines
626 B
2 months ago
|
using System;
|
||
|
|
||
|
namespace Org.BouncyCastle.Crypto.Tls
|
||
|
{
|
||
|
public class TlsFatalAlert
|
||
|
: TlsException
|
||
|
{
|
||
|
private readonly byte alertDescription;
|
||
|
|
||
|
public TlsFatalAlert(byte alertDescription)
|
||
|
: this(alertDescription, null)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public TlsFatalAlert(byte alertDescription, Exception alertCause)
|
||
|
: base(Tls.AlertDescription.GetText(alertDescription), alertCause)
|
||
|
{
|
||
|
this.alertDescription = alertDescription;
|
||
|
}
|
||
|
|
||
|
public virtual byte AlertDescription
|
||
|
{
|
||
|
get { return alertDescription; }
|
||
|
}
|
||
|
}
|
||
|
}
|