| org.apache.jasper.compiler.ErrorHandler
All known Subclasses: org.apache.jasper.compiler.DefaultErrorHandler,
ErrorHandler | public interface ErrorHandler (Code) | | Interface 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 author: Kin-man Chung |
javacError | public void javacError(JavacErrorDetail[] details) throws JasperException(Code) | | Processes the given javac compilation errors.
Parameters: details - Array of JavacErrorDetail instances corresponding to thecompilation errors |
javacError | public void javacError(String errorReport, Exception exception) throws JasperException(Code) | | Processes the given javac error report and exception.
Parameters: errorReport - Compilation error report Parameters: exception - Compilation exception |
jspError | public void jspError(String fname, int line, int column, String msg, Exception exception) throws JasperException(Code) | | Processes the given JSP parse error.
Parameters: fname - Name of the JSP file in which the parse error occurred Parameters: line - Parse error line number Parameters: column - Parse error column number Parameters: msg - Parse error message Parameters: exception - Parse exception |
jspError | public void jspError(String msg, Exception exception) throws JasperException(Code) | | Processes the given JSP parse error.
Parameters: msg - Parse error message Parameters: exception - Parse exception |
|
|