01: package jimm.datavision;
02:
03: /**
04: * This exception is thrown when the user cancels an action, usually
05: * by clicking "Cancel" in a dialog. It's a runtime exception so it can
06: * "sneak through" while parsing a report XML file -- I don't have control
07: * over the exceptions those methods declare.
08: *
09: * @author Jim Menard, <a href="mailto:jimm@io.com">jimm@io.com</a>
10: */
11: public class UserCancellationException extends RuntimeException {
12:
13: public UserCancellationException() {
14: super ();
15: }
16:
17: public UserCancellationException(String msg) {
18: super(msg);
19: }
20:
21: }
|