org.apache.jasper.compiler
Interface ErrorHandler
public interface ErrorHandler
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.
- Jan Luehe
- Kin-man Chung
void | javacError(String errorReport, Exception exception) - Processes the given javac error report and exception.
|
void | javacError(JavacErrorDetail details) - Processes the given javac compilation errors.
|
void | jspError(String msg, Exception exception) - Processes the given JSP parse error.
|
void | jspError(String fname, int line, int column, String msg, Exception exception) - Processes the given JSP parse error.
|
javacError
public void javacError(String errorReport,
Exception exception)
throws JasperException
Processes the given javac error report and exception.
errorReport
- Compilation error reportexception
- Compilation exception
javacError
public void javacError(JavacErrorDetail details)
throws JasperException
Processes the given javac compilation errors.
details
- Array of JavacErrorDetail instances corresponding to the
compilation errors
jspError
public void jspError(String msg,
Exception exception)
throws JasperException
Processes the given JSP parse error.
msg
- Parse error messageexception
- Parse exception
jspError
public void jspError(String fname,
int line,
int column,
String msg,
Exception exception)
throws JasperException
Processes the given JSP parse error.
fname
- Name of the JSP file in which the parse error occurredline
- Parse error line numbercolumn
- Parse error column numbermsg
- Parse error messageexception
- Parse exception
Copyright B) 2000 Apache Software Foundation. All Rights Reserved.