1 package jimm.datavision; 2 3 /** 4 * This exception is thrown when the user cancels an action, usually 5 * by clicking "Cancel" in a dialog. It's a runtime exception so it can 6 * "sneak through" while parsing a report XML file -- I don't have control 7 * over the exceptions those methods declare. 8 * 9 * @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 } 22 23 24