net.continuumsecurity.proxy.ProxyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atf-toolbox Show documentation
Show all versions of atf-toolbox Show documentation
Automation Testing Framework Toolbox Provides simple automation.
The newest version!
package net.continuumsecurity.proxy;
public class ProxyException extends RuntimeException {
private static final long serialVersionUID = -8089119902100465025L;
public ProxyException() {
super();
}
public ProxyException(String message) {
super(message);
}
public ProxyException(String message, Throwable cause) {
super(message, cause);
}
public ProxyException(Throwable cause) {
super(cause);
}
}