package code.term;

// TODO: This class should be in the parser package that uses it.


/**
 * Description of the Class
 *
 * @author Sergio Antoy
 * @since June 17, 2003
 */
public class ParseError extends RuntimeException {
    /**
     * Constructor for the ParseError object
     *
     * @param message Description of the Parameter
     */
    public ParseError(String message) {
        super(message);
    }
}

