aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/exception/ElementNotFoundException.java
blob: 97fb6c47cca1baa9bcae5168e7e1ba6c083b2590 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package at.ac.tuwien.sepm.assignment.groupphase.exception;

public class ElementNotFoundException extends Exception {

    public ElementNotFoundException(String message) {
        super(message);
    }

    public ElementNotFoundException(String message, Throwable cause) {
        super(message, cause);
    }

    public ElementNotFoundException(Throwable cause) {
        super(cause);
    }
}