All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dockerjava.api.exception.UnauthorizedException Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package com.github.dockerjava.api.exception;

/**
 *
 */
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 - 2024 Weber Informatics LLC | Privacy Policy