1 /**
2 *
3 */
4 package org.melati.servlet.test;
5
6 import org.melati.Melati;
7 import org.melati.servlet.ConfigServlet;
8 import org.melati.util.ConnectionPendingException;
9
10 /**
11 * @author timp
12 *
13 */
14 public class DbPendingErrorConfigServlet extends ConfigServlet {
15
16 /**
17 * Shut eclipse up.
18 */
19 private static final long serialVersionUID = 1L;
20
21 /**
22 * A bomber.
23 */
24 public DbPendingErrorConfigServlet() {
25 super();
26 }
27
28
29
30
31 protected void doConfiguredRequest(Melati melati)
32 throws Exception {
33 throw new ConnectionPendingException("testdb");
34 }
35
36 }