javax.servlet.jsp
public final class: ErrorData [javadoc |
source]
java.lang.Object
javax.servlet.jsp.ErrorData
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".
Also see:
- PageContext#getErrorData
- since:
2.0
-
Constructor: |
public ErrorData(Throwable throwable,
int statusCode,
String uri,
String servletName) {
this.throwable = throwable;
this.statusCode = statusCode;
this.uri = uri;
this.servletName = servletName;
}
Creates a new ErrorData object. Parameters:
throwable - The Throwable that is the cause of the error
statusCode - The status code of the error
uri - The request URI
servletName - The name of the servlet invoked
|
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |