package org.bouncycastle.crypto.tls;
public class TlsFatalAlertReceived
extends TlsException
{
protected short alertDescription;
public TlsFatalAlertReceived(short alertDescription)
{
super(AlertDescription.getText(alertDescription), null);
this.alertDescription = alertDescription;
}
public short getAlertDescription()
{
return alertDescription;
}
}