blob: 33024b0f4cf32ca6d016697a8b44faf451fa184f (
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 PersistenceException extends Exception {
public PersistenceException(String message) {
super(message);
}
public PersistenceException(String message, Throwable cause) {
super(message, cause);
}
public PersistenceException(Throwable cause) {
super(cause);
}
}
|