01: package org.nemesis.forum.webapp.exception;
02:
03: import javax.servlet.ServletException;
04:
05: /**
06: * Exception standard susceptible d'etre lancée dans cette application
07: *
08: * @author dlaurent
09: * 15:12:22
10: *
11: */
12: public class StandardException extends ServletException {
13:
14: /**
15: * Constructor for StandardException.
16: */
17: public StandardException() {
18: super ();
19: }
20:
21: /**
22: * Constructor for StandardException.
23: * @param arg0
24: */
25: public StandardException(String arg0) {
26: super(arg0);
27: }
28:
29: }
|