All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.continuumsecurity.proxy.ProxyException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy