01: package csdl.jblanket;
02:
03: /**
04: * Provides exception thrown for JBlanket related errors.
05: *
06: * @author Joy M. Agustin
07: * @version $Id: JBlanketException.java,v 1.1 2004/11/07 00:32:42 timshadel Exp $
08: */
09: public class JBlanketException extends Exception {
10:
11: /**
12: * Thrown when exceptions occur during modification process.
13: *
14: * @param detailMessage A message describing the problem.
15: */
16: public JBlanketException(String detailMessage) {
17: super (detailMessage);
18: }
19:
20: /**
21: * Thrown when exceptions occur during modification process.
22: *
23: * @param detailMessage A message describing the problem.
24: * @param error The previous error.
25: */
26: public JBlanketException(String detailMessage, Throwable error) {
27: super(detailMessage, error);
28: }
29: }
|