package code.loop.parser;

/**
 *  Description of the Class
 *
 *@author     jimeng
 *@since    July 24, 2003
 */
class ParseError extends Exception {
    /**
     *  Constructor for the ParseError object
     *
     *@param  msg  Description of the Parameter
     */
    ParseError(String msg) {
        super(msg);
    }
}


