| |
|
| java.lang.Object javax.servlet.jsp.ErrorData
ErrorData | final public class ErrorData (Code) | | Contains information about an error, for error pages.
The information contained in this instance is meaningless if not used
in the context of an error page. To indicate a JSP is an error page,
the page author must set the isErrorPage attribute of the page directive
to "true".
See Also: PageContext.getErrorData since: 2.0 |
ErrorData | public ErrorData(Throwable throwable, int statusCode, String uri, String servletName)(Code) | | Creates a new ErrorData object.
Parameters: throwable - The Throwable that is the cause of the error Parameters: statusCode - The status code of the error Parameters: uri - The request URI Parameters: servletName - The name of the servlet invoked |
getRequestURI | public String getRequestURI()(Code) | | Returns the request URI.
The request URI |
getServletName | public String getServletName()(Code) | | Returns the name of the servlet invoked.
The name of the servlet invoked |
getStatusCode | public int getStatusCode()(Code) | | Returns the status code of the error.
The status code of the error |
getThrowable | public Throwable getThrowable()(Code) | | Returns the Throwable that caused the error.
The Throwable that caused the error |
|
|
|