Coverage report

  %line %branch
nl.toolforge.karma.core.boot.WorkingContextException
0% 
0% 

 1  
 package nl.toolforge.karma.core.boot;
 2  
 
 3  
 /**
 4  
  * @author D.A. Smedes
 5  
  * @version $Id: WorkingContextException.java,v 1.1 2004/11/02 22:26:43 asmedes Exp $
 6  
  */
 7  
 public class WorkingContextException extends Exception {
 8  
 
 9  
   public WorkingContextException(String message) {
 10  0
     super(message);
 11  0
   }
 12  
 
 13  
   public WorkingContextException(Throwable cause) {
 14  0
     super(cause);
 15  0
   }
 16  
 
 17  
   public WorkingContextException(String message, Throwable cause) {
 18  0
     super(message, cause);
 19  0
   }
 20  
 }

This report is generated by jcoverage, Maven and Maven JCoverage Plugin.