com.fitbur.github.dockerjava.api.NotAcceptableException Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.api;
/**
*
*/
public class NotAcceptableException extends DockerException {
private static final long serialVersionUID = -1771212181727204375L;
public NotAcceptableException(String message, Throwable cause) {
super(message, 406, cause);
}
public NotAcceptableException(String message) {
this(message, null);
}
public NotAcceptableException(Throwable cause) {
this(cause.getMessage(), cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy