import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class MyServlet extends HttpServlet {
public void init(ServletConfig config) throws ServletException {
super.init(config);
throw new NullPointerException();
}
public void doGet (HttpServletRequest req, HttpServletResponse res)
throws IOException, ServletException
{
ServletOutputStream out = res.getOutputStream();
res.setContentType("text/html");
out.println("Exception Thrower");
out.println("You'll never see this!");
}
}
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
MyServletName
MyServlet
MyServletName
/index.html