package allumettes;

/** Exception indiquant que le joueur tente une opération
 * non permise.
 * @author Édouard Lumet
 *
 */
public class OperationInterditeException extends RuntimeException {

	/**
	 * Initaliser une OperationInterditeException.
	 */
	public OperationInterditeException() {
		super(" a triché !");
	}
}
