Added ChessException class
This commit is contained in:
parent
4bcb0a032d
commit
037888e79f
24
src/dev/kske/chess/exception/ChessException.java
Normal file
24
src/dev/kske/chess/exception/ChessException.java
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
package dev.kske.chess.exception;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Project: <strong>Chess</strong><br>
|
||||||
|
* File: <strong>ChessException.java</strong><br>
|
||||||
|
* Created: <strong>22 Sep 2019</strong><br>
|
||||||
|
* Author: <strong>Kai S. K. Engelbart</strong>
|
||||||
|
*/
|
||||||
|
public class ChessException extends Exception {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -2208596063548245189L;
|
||||||
|
|
||||||
|
public ChessException(String message, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public ChessException(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public ChessException(Throwable cause) {
|
||||||
|
super(cause);
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user