01: package csdl.stackmvc.control;
02:
03: /**
04: * Thrown when exceptions occur during JSP processing.
05: *
06: * @author Philip M. Johnson
07: * @author Jitender Miglani (did minor changes)
08: */
09: public class JspException extends Exception {
10:
11: /**
12: * Thrown when exceptions occur during JSP processing.
13: *
14: * @param detailMessage A detailed string describing the error.
15: */
16: public JspException(String detailMessage) {
17: super(detailMessage);
18: }
19:
20: }
|