Uses of Class javax.servlet.ServletException

Uses in package javax.servlet.http

Methods which throw type javax.servlet.ServletException

void
Called by the server (via the service method) to allow a servlet to handle a DELETE request.
void
Called by the server (via the service method) to allow a servlet to handle a GET request.
void
Receives an HTTP HEAD request from the protected service method and handles the request.
void
Called by the server (via the service method) to allow a servlet to handle a OPTIONS request.
void
Called by the server (via the service method) to allow a servlet to handle a POST request.
void
Called by the server (via the service method) to allow a servlet to handle a PUT request.
void
Called by the server (via the service method) to allow a servlet to handle a TRACE request.
void
Dispatches client requests to the protected service method.
void
Receives standard HTTP requests from the public service method and dispatches them to the doXXX methods defined in this class.

Uses in package javax.servlet

Classes derived from javax.servlet.ServletException

class
Defines an exception that a servlet or filter throws to indicate that it is permanently or temporarily unavailable.

Methods which throw type javax.servlet.ServletException

void
Causes the next filter in the chain to be invoked, or if the calling filter is the last filter in the chain, causes the resource at the end of the chain to be invoked.
void
The doFilter method of the Filter is called by the container each time a request/response pair is passed through the chain due to a client request for a resource at the end of the chain.
void
Forwards a request from a servlet to another resource (servlet, JSP file, or HTML file) on the server.
Servlet
void
Includes the content of a resource (servlet, JSP page, HTML file) in the response.
void
A convenience method which can be overridden so that there's no need to call super.init(config).
void
Filter.init(FilterConfig filterConfig)
Called by the web container to indicate to a filter that it is being placed into service.
void
Called by the servlet container to indicate to a servlet that the servlet is being placed into service.
void
Called by the servlet container to indicate to a servlet that the servlet is being placed into service.
void
Called by the servlet container to allow the servlet to respond to a request.
void
Called by the servlet container to allow the servlet to respond to a request.

Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.