package servlet_tests; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class ServletTest2 extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException { boolean passed = false; try { getClass().getClassLoader().loadClass("foo.Bar"); } catch (ClassNotFoundException cnfe) { passed = true; // Expect to catch the exception } res.getWriter().print(passed); } }