Clover coverage report - JFCUnit Test Coverage
Coverage timestamp: Mon Dec 20 2004 23:38:10 MST
file stats: LOC: 18   Methods: 1
NCLOC: 6   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
JFCTestException.java - 0% 0% 0%
coverage
 1   
 package junit.extensions.jfcunit;
 2   
 
 3   
 
 4   
 /**
 5   
  * Exception to indicate problems relating to jfcUnit.
 6   
  *
 7   
  * @author Matt Caswell
 8   
  */
 9   
 public class JFCTestException extends Exception {
 10   
     /**
 11   
      * Construct a new JFCTestException with a given message.
 12   
      * @param mesg The message for this exception
 13   
      */
 14  0
     public JFCTestException(final String mesg) {
 15  0
         super(mesg);
 16   
     }
 17   
 }
 18