io.probedock.client.common.config.ProbeConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of probe-dock-java Show documentation
Show all versions of probe-dock-java Show documentation
Base code to write Probe Dock clients in Java
The newest version!
package io.probedock.client.common.config;
/**
* @author Simon Oulevay
*/
public class ProbeConfigurationException extends ProbeRuntimeException {
public ProbeConfigurationException(String message) {
super(message);
}
public ProbeConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy