Coverage Report - biz.xsoftware.examples.basic.PurchaseException
 
Classes in this File Line Coverage Branch Coverage Complexity
PurchaseException
100%
2/2
N/A
1
 
 1  
 /*
 2  
  * Created on Jul 3, 2004
 3  
  *
 4  
  * To change the template for this generated file go to
 5  
  * Window - Preferences - Java - Code Generation - Code and Comments
 6  
  */
 7  
 package biz.xsoftware.examples.basic;
 8  
 
 9  
 /**
 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  2
                 super(e);
 26  2
         }
 27  
 
 28  
 }