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