01 /*
02 * Created on Jul 3, 2004
03 *
04 * To change the template for this generated file go to
05 * Window - Preferences - Java - Code Generation - Code and Comments
06 */
07 package biz.xsoftware.examples.basic;
08
09 /**
10 * An Exception the SysUnderTest(WebStore) generates when a purchase goes
11 * bad.
12 * @author Dean Hiller
13 */
14 public class PurchaseException extends RuntimeException {
15
16 /**
17 *
18 */
19 private static final long serialVersionUID = 1L;
20
21 /**
22 * @param e
23 */
24 public PurchaseException(Throwable e) {
25 super(e);
26 }
27
28 }
|