![JAR search and dependency download from the Maven repository](/logo.png)
bdi.glue.http.common.HttpException Maven / Gradle / Ivy
package bdi.glue.http.common;
/**
* @author @aloyer
*/
public class HttpException extends RuntimeException {
public HttpException(String message) {
super(message);
}
public HttpException(String message, Throwable cause) {
super(message, cause);
}
public HttpException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy