/** * An exception class to indicate that there is something wrong in the * maze file. * * @author geoffreytowell * Created Sep 2019 * Modified: Aug 12, 2021 * */ public class ImproperMazeException extends Exception { /* * Constructor for the exception * @param s description of the problem with the maze */ public ImproperMazeException(String s) { super(s); } }