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

com.fitbur.github.dockerjava.api.BadRequestException Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.fitbur.github.dockerjava.api;

/**
 *
 */
public class BadRequestException extends DockerException {

    private static final long serialVersionUID = -2450396075981100160L;

    public BadRequestException(String message, Throwable cause) {
        super(message, 400, cause);
    }

    public BadRequestException(String message) {
        this(message, null);
    }

    public BadRequestException(Throwable cause) {
        this(cause.getMessage(), cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy