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 impersonator Show documentation
Show all versions of impersonator Show documentation
Spoof TLS/JA3/JA4 and HTTP/2 fingerprints in Java
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;
}
}