jodd.http.HttpException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jodd-http Show documentation
Show all versions of jodd-http Show documentation
Jodd HTTP client is easy-to-use http client.
// Copyright (c) 2003-2013, Jodd Team (jodd.org). All Rights Reserved.
package jodd.http;
import jodd.exception.UncheckedException;
/**
* HTTP exception.
*/
public class HttpException extends UncheckedException {
public HttpException(Throwable t) {
super(t);
}
public HttpException(String message) {
super(message);
}
public HttpException(String message, Throwable t) {
super(message, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy