Added ChessException class

This commit is contained in:
Kai S. K. Engelbart 2019-10-04 18:18:00 +02:00
parent 9c6faae6ba
commit dfa3874dcf
Signed by: kske
GPG Key ID: 8BEB13EC5DF7EF13

View 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);
}
}