package code.loader.except;

/**
 * Parse Exception.
 *
 * @author jimeng
 * @since June 17, 2003
 */
public class ParseException extends LoaderException {

    /**
     * Constructor for the ParseException object
     *
     * @param msg Description of the Parameter
     */
    public ParseException(String msg) {
        super(msg);
    }


    /**
     * Constructor for the ParseException object
     */
    public ParseException() {
    }
}

