package freegraph; /** * ExpressionException used for exceptions in parsing expressions */ public class ExpressionException extends Exception { /** * Constructs a new ExpressionException with the supplied message * @param msg the message for the ExpressionException */ public ExpressionException(String msg) { super(msg); } }