Coverage Report - yarfraw.core.datamodel.YarfrawException
 
Classes in this File Line Coverage Branch Coverage Complexity
YarfrawException
100% 
N/A 
1
 
 1  
 package yarfraw.core.datamodel;
 2  
 
 3  
 /**
 4  
  * Indicates an unexpected error occurs.
 5  
  */
 6  
 public class YarfrawException extends Exception{
 7  
 
 8  
   private static final long serialVersionUID = 1L;
 9  
   public YarfrawException(String message){
 10  183
     super(message);
 11  183
   }
 12  
   
 13  
   public YarfrawException(String message, Throwable t){
 14  3
     super(message, t);
 15  3
   }
 16  
 }