Uses of Class
org.webmacro.ContextException

Packages that use ContextException
org.webmacro   
 

Uses of ContextException in org.webmacro
 

Subclasses of ContextException in org.webmacro
 class InvalidContextException
          The context supplied to a macro did not contain information that the macro required in order to write or evaluate itself.
 class PropertyException
          A PropertyException indicates some failure to evaluate a property in a context or against some other object.
static class PropertyException.InvalidTypeException
          Exception thrown when a Variable isn't of the specified class type.
static class PropertyException.NoSuchMethodException
          NoSuchMethodException indicates that the variable did not have the requested method.
static class PropertyException.NoSuchMethodWithArgumentsException
          NoSuchMethodWithArgumentsException indicates that the variable did not have the a method with the request name and argument list
static class PropertyException.NoSuchPropertyException
          NoSuchPropertyException indicates that the variable did not have the requested property.
static class PropertyException.NoSuchVariableException
          NoSuchVariableException indicates that a variable did not exist in the context against which it was being evaluated.
static class PropertyException.NullToStringException
          NullStringException indicates that a variable exists but its .toString() method returns null
static class PropertyException.NullValueException
          NullValueException indicates that a variable or property exists, but evaluated to null in the context against which it was being evaluated.
static class PropertyException.RestrictedMethodException
          RestrictedMethodException indicates that the requested method may not be invoked from a template due to security constraints
static class PropertyException.RestrictedPropertyException
          RestrictedPropertyException indicates that the requested property may not be invoked from a template due to security constraints
static class PropertyException.UndefinedVariableException
          UndefinedVariableException indicates that the variable did not have the requested method.
static class PropertyException.VoidValueException
          VoidValueException indicates that someone tried to use the return value of a void method
 class UnsettableException
          This exception is thrown on attempt to set something that is not settable.