package sale; /** * Exception thrown when some action was cancelled by the user. You can use this exception to mark * cancellation of your own actions. * * @author Steffen Zschaler * @version 2.0 17/08/1999 * @since v2.0 */ public class CancelledException extends Exception { /** * Create a new CancelledException. */ public CancelledException() { super(); } /** * Create a new CancelledException with a detail message. * * @param sDetail the detail message. */ public CancelledException(String sDetail) { super (sDetail); } }