File size: 227 Bytes
eb67da4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
package com.hccake.ballcat.codegen.exception;
/**
* 模板渲染失败异常
*
* @author hccake
*/
public class TemplateRenderException extends Exception {
public TemplateRenderException(Exception e) {
super(e);
}
}
|