Package org.apache.tapestry5.services
Interface ExceptionReporter
- All Known Implementing Classes:
ExceptionReport
,ExceptionReporterImpl
public interface ExceptionReporter
Interface implemented by a page used for reporting exceptions.
Alternately, implemented by services to report request handling exceptions. This is invoked before the exception report page is rendered.
The default implementation converts the exception into a well formatted text file, with content similar to the default
ExceptionReport
page, and stores this file on the file system.
Exception report files are stored beneath a root directory, with intermediate folders for the day (e.g., "2014-06-02"), hour, and minute.
Directories are created as necessary; however, there is nothing in place to delete these exceptions reports.-
Method Summary
Modifier and TypeMethodDescriptionvoid
reportException
(Throwable exception) Used to communicate to the page what exception is to be reported.
-
Method Details
-
reportException
Used to communicate to the page what exception is to be reported.- Parameters:
exception
- runtime exception thrown during processing of the request
-