org.apache.coyote
Interface Adapter

All Known Implementing Classes:
CoyoteAdapter, Tomcat3Adapter

public interface Adapter

Adapter.

Author:
Remy Maucherat

Method Summary
 void service(Request req, Response res)
          Call the service method, and notify all listeners
 

Method Detail

service

public void service(Request req,
                    Response res)
             throws java.lang.Exception
Call the service method, and notify all listeners

Throws:
java.lang.Exception - if an error happens during handling of the request. Common errors are:
  • IOException if an input/output error occurs and we are processing an included servlet (otherwise it is swallowed and handled by the top level error handler mechanism)
  • ServletException if a servlet throws an exception and we are processing an included servlet (otherwise it is swallowed and handled by the top level error handler mechanism)
Tomcat should be able to handle and log any other exception ( including runtime exceptions )


Copyright © 2000-2003 Apache Software Foundation. All Rights Reserved.