FileDocCategorySizeDatePackage
ChessMoveException.javaAPI DocExample253Sat Apr 28 21:26:12 BST 2001jabadot

ChessMoveException.java

package jabadot;

/** A ChessMoveException is thrown  when the user makes an illegal move. */
public class ChessMoveException extends Exception {
	public ChessMoveException () {
		super();
	}
	public ChessMoveException (String msg) {
		super(msg);
	}
}