]> git.somenet.org - pub/jan/dst18.git/blob - ass3-elastic/src/main/java/dst/ass3/elastic/ImageNotFoundException.java
Add template for assignment 3
[pub/jan/dst18.git] / ass3-elastic / src / main / java / dst / ass3 / elastic / ImageNotFoundException.java
1 package dst.ass3.elastic;
2
3 /**
4  * Exception indicating that the image which should be used for a container start is not available.
5  */
6 public class ImageNotFoundException extends ContainerException {
7
8     public ImageNotFoundException() {
9     }
10
11     public ImageNotFoundException(String message) {
12         super(message);
13     }
14
15     public ImageNotFoundException(String message, Throwable cause) {
16         super(message, cause);
17     }
18
19     public ImageNotFoundException(Throwable cause) {
20         super(cause);
21     }
22 }