FileDocCategorySizeDatePackage
LegacyServlet.javaAPI DocExample724Sun Aug 15 14:17:06 BST 2004com.oreilly.strutsckbk.ch09

LegacyServlet.java

package com.oreilly.strutsckbk.ch09;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class LegacyServlet extends HttpServlet {

	protected void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		doPost(request, response);
	}
	protected void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
        throw new ServletException("This is a test exception", new Exception("Unable to establish connection with legacy system."));
	}
}