net.nemerosa.ontrack.client.ClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-client Show documentation
Show all versions of ontrack-client Show documentation
Generic customisable HTTP and JSON client.
package net.nemerosa.ontrack.client;
import net.nemerosa.ontrack.common.BaseException;
public abstract class ClientException extends BaseException {
public ClientException(String message) {
super(message);
}
public ClientException(String message, Object... params) {
super(message, params);
}
public ClientException(Exception error, String message, Object... params) {
super(error, message, params);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy