01: package freemarker.ext.beans;
02:
03: import freemarker.core.Environment;
04:
05: import freemarker.template.TemplateModelException;
06:
07: /**
08:
09: * An exception thrown when there is an attempt to access
10:
11: * an invalid bean property when we are in a "strict bean" mode
12:
13: * @author Jonathan Revusky
14:
15: */
16:
17: public class InvalidPropertyException extends TemplateModelException {
18:
19: public InvalidPropertyException(String description) {
20:
21: super(description);
22:
23: }
24:
25: }
|