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