Package org.apache.jasper.compiler
Interface ErrorHandler
- 
 public interface ErrorHandlerInterface for handling JSP parse and javac compilation errors. An implementation of this interface may be registered with the ErrorDispatcher by setting the XXX initialization parameter in the JSP page compiler and execution servlet in Catalina's web.xml file to the implementation's fully qualified class name.- Author:
- Jan Luehe, Kin-man Chung
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidjavacError(java.lang.String errorReport, java.lang.Exception exception)Processes the given javac error report and exception.voidjavacError(JavacErrorDetail[] details)Processes the given javac compilation errors.voidjspError(java.lang.String fname, int line, int column, java.lang.String msg, java.lang.Exception exception)Processes the given JSP parse error.voidjspError(java.lang.String msg, java.lang.Exception exception)Processes the given JSP parse error.
 
- 
- 
- 
Method Detail- 
jspErrorvoid jspError(java.lang.String fname, int line, int column, java.lang.String msg, java.lang.Exception exception) throws JasperExceptionProcesses the given JSP parse error.- Parameters:
- fname- Name of the JSP file in which the parse error occurred
- line- Parse error line number
- column- Parse error column number
- msg- Parse error message
- exception- Parse exception
- Throws:
- JasperException- An error occurred
 
 - 
jspErrorvoid jspError(java.lang.String msg, java.lang.Exception exception) throws JasperExceptionProcesses the given JSP parse error.- Parameters:
- msg- Parse error message
- exception- Parse exception
- Throws:
- JasperException- An error occurred
 
 - 
javacErrorvoid javacError(JavacErrorDetail[] details) throws JasperException Processes the given javac compilation errors.- Parameters:
- details- Array of JavacErrorDetail instances corresponding to the compilation errors
- Throws:
- JasperException- An error occurred
 
 - 
javacErrorvoid javacError(java.lang.String errorReport, java.lang.Exception exception) throws JasperExceptionProcesses the given javac error report and exception.- Parameters:
- errorReport- Compilation error report
- exception- Compilation exception
- Throws:
- JasperException- An error occurred
 
 
- 
 
-