TemplateGenerateException.java 786 B

123456789101112131415161718192021222324
  1. package com.udapsoft.modular.web.template;
  2. import com.udapsoft.modular.core.exception.ModularException;
  3. public class TemplateGenerateException extends ModularException {
  4. private static final long serialVersionUID = -2856982637714523913L;
  5. private static final String DEFAULT_ERROR_MESSAGE = "템플릿으로 결과 생성 중 오류가 발생하였습니다.";
  6. public TemplateGenerateException() {
  7. super("템플릿으로 결과 생성 중 오류가 발생하였습니다.");
  8. }
  9. public TemplateGenerateException(String message) {
  10. super(message);
  11. }
  12. public TemplateGenerateException(Throwable t) {
  13. super("템플릿으로 결과 생성 중 오류가 발생하였습니다.", t);
  14. }
  15. public TemplateGenerateException(String message, Throwable t) {
  16. super(message, t);
  17. }
  18. }