public interface TemplateExceptionHandler
template_exception_handler
configuration setting;
see Configurable.setTemplateExceptionHandler(TemplateExceptionHandler)
for more.Modifier and Type | Field and Description |
---|---|
static TemplateExceptionHandler |
DEBUG_HANDLER
TemplateExceptionHandler useful when you developing non-HTML templates. |
static TemplateExceptionHandler |
HTML_DEBUG_HANDLER
TemplateExceptionHandler useful when you developing HTML templates. |
static TemplateExceptionHandler |
IGNORE_HANDLER
TemplateExceptionHandler that simply skips the failing instructions, letting the template continue
executing. |
static TemplateExceptionHandler |
RETHROW_HANDLER
TemplateExceptionHandler that simply re-throws the exception; this should be used in most production
systems. |
Modifier and Type | Method and Description |
---|---|
void |
handleTemplateException(TemplateException te,
Environment env,
java.io.Writer out)
Method called after a
TemplateException was raised inside a template. |
static final TemplateExceptionHandler IGNORE_HANDLER
TemplateExceptionHandler
that simply skips the failing instructions, letting the template continue
executing. It does nothing to handle the event. Note that the exception is still logged, as with all
other TemplateExceptionHandler
-s.static final TemplateExceptionHandler RETHROW_HANDLER
TemplateExceptionHandler
that simply re-throws the exception; this should be used in most production
systems.static final TemplateExceptionHandler DEBUG_HANDLER
TemplateExceptionHandler
useful when you developing non-HTML templates. This handler
outputs the stack trace information to the client and then re-throws the exception.static final TemplateExceptionHandler HTML_DEBUG_HANDLER
TemplateExceptionHandler
useful when you developing HTML templates. This handler
outputs the stack trace information to the client, formatting it so that it will be usually well readable
in the browser, and then re-throws the exception.void handleTemplateException(TemplateException te, Environment env, java.io.Writer out) throws TemplateException
TemplateException
was raised inside a template. The error is logged before this is
called, so there's no need to log it here. The exception should be re-thrown unless you want to
suppress the exception.
Note that you can check with Environment.isInAttemptBlock()
if you are inside a #attempt
block, which then will handle handle this exception and roll back the output generated inside it.
Note that StopException
-s (raised by #stop
) won't be captured.
te
- The exception that occurred; don't forget to re-throw it unless you want to suppress itenv
- The runtime environment of the templateout
- This is where the output of the template is writtenTemplateException