1 52 53 package freemarker.template; 54 55 import freemarker.core.Environment; 56 57 63 public class TemplateModelException extends TemplateException { 64 65 69 public TemplateModelException() { 70 this(null, null); 71 } 72 73 79 public TemplateModelException(String description) { 80 this(description, null); 81 } 82 83 90 public TemplateModelException(Exception cause) { 91 this(null, cause); 92 } 93 94 103 public TemplateModelException(String description, Exception cause) { 104 super( description, cause, Environment.getCurrentEnvironment() ); 105 } 106 } 107 | Popular Tags |