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