]> git.somenet.org - pub/jan/dst18.git/blob - ass3-elastic/src/main/java/dst/ass3/elastic/ContainerException.java
Add template for assignment 3
[pub/jan/dst18.git] / ass3-elastic / src / main / java / dst / ass3 / elastic / ContainerException.java
1 package dst.ass3.elastic;
2
3 /**
4  * Exception indicating that the ContainerService encountered an error when performing a task.
5  */
6 public class ContainerException extends Exception {
7
8     public ContainerException() {
9     }
10
11     public ContainerException(String message) {
12         super(message);
13     }
14
15     public ContainerException(String message, Throwable cause) {
16         super(message, cause);
17     }
18
19     public ContainerException(Throwable cause) {
20         super(cause);
21     }
22 }