All Downloads are FREE. Search and download functionalities are using the official Maven repository.

space.yizhu.record.template.stat.ParseException Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version


package space.yizhu.record.template.stat;


@SuppressWarnings("serial")
public class ParseException extends RuntimeException {

    public ParseException(String msg, Location loc) {
        super(loc != null ? msg + loc : msg);
    }

    public ParseException(String msg, Location loc, Throwable t) {
        super(loc != null ? msg + loc : msg, t);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy