enjoy 3.7 release

This commit is contained in:
James 2019-03-19 16:23:21 +08:00
parent 3a4f4f4495
commit 3cc94a5b32

View File

@ -28,8 +28,8 @@ public class TemplateException extends RuntimeException {
super(loc != null ? msg + loc : msg);
}
public TemplateException(String msg, Location loc, Throwable t) {
super(loc != null ? msg + loc : msg, t);
public TemplateException(String msg, Location loc, Throwable cause) {
super(loc != null ? msg + loc : msg, cause);
}
}