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