freemarker.ext.beans.InvalidPropertyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.freemarker
Show all versions of org.apache.servicemix.bundles.freemarker
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package freemarker.ext.beans;
import freemarker.template.TemplateModelException;
/**
* An exception thrown when there is an attempt to access
* an invalid bean property when we are in a "strict bean" mode
* @author Jonathan Revusky
*/
public class InvalidPropertyException extends TemplateModelException {
public InvalidPropertyException(String description) {
super(description);
}
}