1 package dst.ass3.elastic;
4 * Exception indicating that the image which should be used for a container start is not available.
6 public class ImageNotFoundException extends ContainerException {
8 public ImageNotFoundException() {
11 public ImageNotFoundException(String message) {
15 public ImageNotFoundException(String message, Throwable cause) {
16 super(message, cause);
19 public ImageNotFoundException(Throwable cause) {