Class ExceptionReportWriterImpl
- java.lang.Object
-
- org.apache.tapestry5.internal.services.exceptions.ExceptionReportWriterImpl
-
- All Implemented Interfaces:
ExceptionReportWriter
public class ExceptionReportWriterImpl extends Object implements ExceptionReportWriter
-
-
Constructor Summary
Constructors Constructor Description ExceptionReportWriterImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
writeReport(PrintWriter writer, Throwable exception)
Analyzes the exception (using theExceptionAnalyzer
service) and then writes the result to the writer.void
writeReport(PrintWriter writer, ExceptionAnalysis analysis)
Writes the analyzed exception to the writer.
-
-
-
Constructor Detail
-
ExceptionReportWriterImpl
public ExceptionReportWriterImpl()
-
-
Method Detail
-
writeReport
public void writeReport(PrintWriter writer, Throwable exception)
Description copied from interface:ExceptionReportWriter
Analyzes the exception (using theExceptionAnalyzer
service) and then writes the result to the writer.- Specified by:
writeReport
in interfaceExceptionReportWriter
- Parameters:
writer
- the PrintWriter to write to, not nullexception
- the exception to look at, possibly null
-
writeReport
public void writeReport(PrintWriter writer, ExceptionAnalysis analysis)
Description copied from interface:ExceptionReportWriter
Writes the analyzed exception to the writer.- Specified by:
writeReport
in interfaceExceptionReportWriter
- Parameters:
writer
- the PrintWriter to write to, not nullanalysis
- the exception to look at, possibly null
-
-