org.bouncycastle.tls.TlsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk14 Show documentation
Show all versions of bctls-jdk14 Show documentation
The Bouncy Castle Java APIs for TLS and DTLS.
package org.bouncycastle.tls;
import java.io.IOException;
/**
* Base exception for various TLS alerts.
*/
public class TlsException
extends IOException
{
// TODO Some day we might be able to just pass this down to IOException (1.6+)
protected Throwable cause;
public TlsException(String message)
{
this(message, null);
}
public TlsException(String message, Throwable cause)
{
super(message);
this.cause = cause;
}
public Throwable getCause()
{
return cause;
}
}