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

space.yizhu.record.template.TemplateException Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version


package space.yizhu.record.template;

import space.yizhu.record.template.stat.Location;
import space.yizhu.record.template.stat.Location;


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

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

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy