org.openqa.jetty.http.handler
Class ErrorPageHandler
java.lang.Object
org.openqa.jetty.http.handler.AbstractHttpHandler
org.openqa.jetty.http.handler.ErrorPageHandler
- All Implemented Interfaces:
- Serializable, HttpHandler, LifeCycle
public class ErrorPageHandler
- extends AbstractHttpHandler
Handler for Error pages
A handler that is registered at the org.openqa.jetty.http.ErrorHandler
context attributed and called by the HttpResponse.sendError method to write a
error page.
- Version:
- $Id: ErrorPageHandler.java,v 1.9 2005/03/15 10:03:44 gregwilkins Exp $
- Author:
- Greg Wilkins (gregw)
- See Also:
- Serialized Form
ErrorPageHandler
public ErrorPageHandler()
handle
public void handle(String pathInContext,
String pathParams,
HttpRequest request,
HttpResponse response)
throws HttpException,
IOException
- Description copied from interface:
HttpHandler
- Handle a request.
Note that Handlers are tried in order until one has handled the
request. i.e. until request.isHandled() returns true.
In broad terms this means, either a response has been commited
or request.setHandled(true) has been called.
- Parameters:
pathInContext
- The context pathpathParams
- Path parameters such as encoded Session IDrequest
- The HttpRequest requestresponse
- The HttpResponse response
- Throws:
HttpException
IOException
writeErrorPage
protected void writeErrorPage(HttpRequest request,
Writer writer,
int code,
String message)
throws IOException
- Throws:
IOException
Copyright © 2012. All Rights Reserved.