| java.lang.Object clime.messadmin.model.ErrorData
ErrorData | final public class ErrorData implements Serializable(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: javax.servlet.jsp.PageContext.getErrorData since: JSP 2.0 author: Cédrik LIME |
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 |
ErrorData | public ErrorData(ServletRequest request)(Code) | | Creates a new ErrorData object.
Parameters: request - The ServletRequest to extract information from |
ErrorData | public ErrorData(HttpServletRequest request, Throwable t)(Code) | | Creates a new ErrorData object.
Parameters: request - The ServletRequest to extract information from Parameters: t - The Throwable that is the cause of the error |
getDate | public Date getDate()(Code) | | Returns the date. |
getRequestURI | public String getRequestURI()(Code) | | Returns the request URI.
The request URI |
getThrowable | public Throwable getThrowable()(Code) | | Returns the Throwable that caused the error.
The Throwable that caused the error |
|
|