com.kpelykh.docker.client.DockerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.kpelykh.docker.client;
/**
*
* @author Konstantin Pelykh ([email protected])
*
*/
public class DockerException extends Exception {
public DockerException() {
}
public DockerException(String message) {
super(message);
}
public DockerException(String message, Throwable cause) {
super(message, cause);
}
public DockerException(Throwable cause) {
super(cause);
}
}