Uses of Class
org.webmacro.WebMacroException

Packages that use WebMacroException
org.webmacro   
org.webmacro.directive   
org.webmacro.engine   
org.webmacro.resource   
org.webmacro.servlet   
org.webmacro.util   
 

Uses of WebMacroException in org.webmacro
 

Subclasses of WebMacroException in org.webmacro
 class ContextException
          The context supplied to a macro did not contain information that the macro required in order to write or evaluate itself, or there was some problem with the way the Context was used.
 class InitException
          This exception is used to indicate that a somethin was not propertly able to initialize itself.
 class InvalidContextException
          The context supplied to a macro did not contain information that the macro required in order to write or evaluate itself.
 class InvalidTypeException
          You used a class or argument that was incorrect, unknown, or otherwise invalid.
 class NotFoundException
          You asked for something that is not currently available.
 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.VoidValueException
          VoidValueException indicates that someone tried to use the return value of a void method
 class ResourceException
          Resource could not be loaded for some reason
 class TemplateException
          Exception raised on discovery of a parsing error.
 class UnsettableException
          This exception is thrown on attempt to set something that is not settable.
 

Uses of WebMacroException in org.webmacro.directive
 

Subclasses of WebMacroException in org.webmacro.directive
static class Directive.NotSimpleVariableBuildException
          Utility exception used by directives to signal that an argument that was supposed to be a simple Variable (only one term) is not.
static class Directive.NotVariableBuildException
          Utility exception used by directives to signal that an argument that was supposed to be a Variable is not a variable.
 

Uses of WebMacroException in org.webmacro.engine
 

Subclasses of WebMacroException in org.webmacro.engine
 class BuildException
           
 class IntrospectionException
           
 class ParseException
          Exception raised on discovery of a parsing error.
 

Uses of WebMacroException in org.webmacro.resource
 

Subclasses of WebMacroException in org.webmacro.resource
 class InvalidResourceException
          Resource exists but could not be loaded for some reason
 

Uses of WebMacroException in org.webmacro.servlet
 

Subclasses of WebMacroException in org.webmacro.servlet
 class ConfigException
          This is an exception, which Config may throw if something is wrong with the config file eg default variables cannot be located
 class HandlerException
          This is an exception which a Handler can throw to indicate that it does not want to process a connection request.
 

Uses of WebMacroException in org.webmacro.util
 

Subclasses of WebMacroException in org.webmacro.util
static class LogTargetFactory.LogCreationException