HttpServletRequest request,
HttpServletResponse response,
ActionConfig action,
Exception exception) throws IOException, ServletException {
ExceptionHandlerConfig config = action.findExceptionHandlerConfig(exception);
if (config == null) {
if (exception instanceof IOException) {
throw (IOException)exception;
} else if (exception instanceof ServletException) {
throw (ServletException)exception;