space.yizhu.record.template.stat.ParseException Maven / Gradle / Ivy
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