All Downloads are FREE. Search and download functionalities are using the official Maven repository.

freemarker.ext.beans.InvalidPropertyException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy