This repository has been archived on 2021-02-18. You can view files and clone it, but cannot push or open issues or pull requests.
chess/src/dev/kske/chess/exception/ChessException.java

25 lines
581 B
Java
Raw Normal View History

2019-10-04 18:18:00 +02:00
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);
}
}