/** * An exception class to indicate that there is something wrong in the * maze file. * * @author geoffreytowell * */ public class ImproperMazeException extends Exception { /** * For serializability, This is not used. */ private static final long serialVersionUID = 1L; /* * Constructor for the exception * @param s description of the problem with the maze */ public ImproperMazeException(String s) { super(s); } }