]> git.somenet.org - pub/jan/dst18.git/blob - ass1-kv/src/main/java/dst/ass1/kv/SessionNotFoundException.java
Add template for assignment 1
[pub/jan/dst18.git] / ass1-kv / src / main / java / dst / ass1 / kv / SessionNotFoundException.java
1 package dst.ass1.kv;
2
3 /**
4  * Exception to indicate that <i>this is not the session you are looking for</i>.
5  */
6 public class SessionNotFoundException extends Exception {
7
8     private static final long serialVersionUID = 1L;
9
10     public SessionNotFoundException() {
11     }
12
13     public SessionNotFoundException(String message) {
14         super(message);
15     }
16
17     public SessionNotFoundException(String message, Throwable cause) {
18         super(message, cause);
19     }
20
21     public SessionNotFoundException(Throwable cause) {
22         super(cause);
23     }
24 }