All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.alcibiade.chess.model.ChessException Maven / Gradle / Ivy

package org.alcibiade.chess.model;

/**
 * Ancestor exception for all concrete model-related exception.
 *
 * @author Yannick Kirschhoffer 
 */
public abstract class ChessException extends Exception {

    public ChessException(String message) {
        super(message);
    }

    public ChessException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy