Add Exception classes

This commit is contained in:
2014-03-15 10:03:13 +01:00
parent e53f4daed3
commit 68f3a75820
6 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package exception;
public class IllegalSetupException extends Exception {
/**
* UID
*/
private static final long serialVersionUID = 4245692066570468500L;
public IllegalSetupException() {
super("Illegal setup.");
}
public IllegalSetupException(String message) {
super(message);
}
}