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/main/java/dev/kske/chess/exception/ChessException.java

43 lines
969 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>
2020-01-19 22:12:33 +01:00
*
* @since Chess v0.5-alpha
* @author Kai S. K. Engelbart
2019-10-04 18:18:00 +02:00
*/
public class ChessException extends Exception {
private static final long serialVersionUID = -2208596063548245189L;
2020-01-19 22:12:33 +01:00
/**
* Initializes chess exception.
*
* @param message the message associated with this exception
* @param cause the cause of this exception
*/
2019-10-04 18:18:00 +02:00
public ChessException(String message, Throwable cause) {
super(message, cause);
}
2020-01-19 22:12:33 +01:00
/**
* Initializes chess exception.
*
* @param message the message associated with this exception
*/
2019-10-04 18:18:00 +02:00
public ChessException(String message) {
super(message);
}
2020-01-19 22:12:33 +01:00
/**
* Initializes chess exception.
*
* @param cause the cause of this exception
*/
2019-10-04 18:18:00 +02:00
public ChessException(Throwable cause) {
super(cause);
}
}