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

net.wouterdanes.docker.remoteapi.exception.ImageNotFoundException Maven / Gradle / Ivy

package net.wouterdanes.docker.remoteapi.exception;

public class ImageNotFoundException extends DockerException {
    public ImageNotFoundException(String imageName, Throwable cause) {
        super(String.format("Image '%s' not found.", imageName), cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy