org.bouncycastle.tls.exception.IllegalStateException 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.exception;
public class IllegalStateException
extends java.lang.IllegalStateException
{
final Throwable cause;
public IllegalStateException(Throwable cause)
{
this.cause = cause;
}
public IllegalStateException(String message, Throwable cause)
{
super(message);
this.cause = cause;
}
public IllegalStateException(String s)
{
super(s);
this.cause = null;
}
public Throwable getCause()
{
return cause;
}
}