1 package spoon.template; 2 3 10 public class TemplateException extends RuntimeException { 11 12 private static final long serialVersionUID = 1L; 13 14 17 public TemplateException() { 18 super(); 19 } 20 21 24 public TemplateException(String message) { 25 super(message); 26 } 27 28 31 public TemplateException(String message, Throwable cause) { 32 super(message, cause); 33 } 34 35 38 public TemplateException(Throwable cause) { 39 super(cause); 40 } 41 42 } 43 | Popular Tags |