/**
 * Root of the Exception tree for parser/lexer exceptions.  Everything in
 * this tree is a checked exception.
 *
 * @author Terran Lane
 * @version 1.0
 */
public class ParseException extends Exception {
  public ParseException(String message, Throwable cause) {
    super(message,cause);
  }
  public ParseException(String message) {
    super(message);
  }
}
