blob: 964e0ea3d2bef5b4f4e416a74bc2852c7c7bc7b7 [file] [log] [blame]
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;
}
}