
net.nemerosa.httpclient.ClientException Maven / Gradle / Ivy
package net.nemerosa.httpclient;
import static java.lang.String.format;
public abstract class ClientException extends RuntimeException {
public ClientException(String message, Object... params) {
super(format(message, params));
}
public ClientException(Exception error, String message, Object... params) {
super(format(message, params), error);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy