package exception;

public class OutOfBoardException extends Exception {

	private static final long serialVersionUID = 1L;

	public OutOfBoardException(int x, int y) {
		super("La case (" + x + "," + y + ") n'existe pas.");
	}

}
