Uses of Interface
freemarker.template.TemplateExceptionHandler

Packages that use TemplateExceptionHandler
freemarker.core This package contains FreeMarker's core parsing/rendering functionality; most casual users do not need to be aware of the classes in this package, and can restrict their attention to the freemarker.template package. 
freemarker.template This package contains the core API's that most users will use. 
 

Uses of TemplateExceptionHandler in freemarker.core
 

Methods in freemarker.core that return TemplateExceptionHandler
 TemplateExceptionHandler Configurable.getTemplateExceptionHandler()
          Retrieves the exception handler used to handle template exceptions.
 

Methods in freemarker.core with parameters of type TemplateExceptionHandler
 void Environment.setTemplateExceptionHandler(TemplateExceptionHandler templateExceptionHandler)
           
 void Configurable.setTemplateExceptionHandler(TemplateExceptionHandler templateExceptionHandler)
          Sets the exception handler used to handle template exceptions.
 

Uses of TemplateExceptionHandler in freemarker.template
 

Fields in freemarker.template declared as TemplateExceptionHandler
static TemplateExceptionHandler TemplateExceptionHandler.DEBUG_HANDLER
          This is a TemplateExceptionHandler used when you develop the templates.
static TemplateExceptionHandler TemplateExceptionHandler.HTML_DEBUG_HANDLER
          This is a TemplateExceptionHandler used when you develop HTML templates.
static TemplateExceptionHandler TemplateExceptionHandler.IGNORE_HANDLER
          This is a TemplateExceptionHandler which simply skips errors.
static TemplateExceptionHandler TemplateExceptionHandler.RETHROW_HANDLER
          This is a TemplateExceptionHandler that simply rethrows the exception.