com.github.dockerjava.api.InternalServerErrorException 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.github.dockerjava.api;
/**
*
*/
public class InternalServerErrorException extends DockerException {
private static final long serialVersionUID = -2450396075981100160L;
public InternalServerErrorException(String message, Throwable cause) {
super(message, 500, cause);
}
public InternalServerErrorException(String message) {
this(message, null);
}
public InternalServerErrorException(Throwable cause) {
this(cause.getMessage(), cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy