com.netsensia.rivalchess.exception.IllegalFenException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rivalchess-engine Show documentation
Show all versions of rivalchess-engine Show documentation
The engine used by Rival Chess
package com.netsensia.rivalchess.exception;
public class IllegalFenException extends RuntimeException {
public IllegalFenException(String s) {
super(s);
}
}