Clover coverage report - Diasparsoft Toolkit - 0.22
Coverage timestamp: Tue Jun 8 2004 12:41:26 EDT
file stats: LOC: 21   Methods: 4
NCLOC: 15   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
DataStoreException.java - 0% 0% 0%
coverage
 1   
 package com.diasparsoftware.store;
 2   
 
 3   
 
 4   
 public class DataStoreException extends RuntimeException {
 5  0
     public DataStoreException() {
 6  0
         super();
 7   
     }
 8   
 
 9  0
     public DataStoreException(Exception cause) {
 10  0
         super(cause);
 11   
     }
 12   
 
 13  0
     public DataStoreException(String message, Exception cause) {
 14  0
         super(message, cause);
 15   
     }
 16   
 
 17  0
     public DataStoreException(String message) {
 18  0
         super(message);
 19   
     }
 20   
 }
 21