/** * Calls an exception if the user has entered too many values in their * guess * * @author Andrew Szatkowski * @version 1.0 */ public class NumberOfInputException extends Exception { NumberOfInputException (String message) { super (message); } }