Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:42:32 CET
file stats: LOC: 21   Methods: 2
NCLOC: 12   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
IntrospectionSystemException.java - 0% 0% 0%
coverage
 1    package com.agical.rmock.core.hub;
 2   
 3    import java.beans.IntrospectionException;
 4   
 5    import com.agical.rmock.core.exception.RMockSystemException;
 6   
 7    public class IntrospectionSystemException extends RMockSystemException {
 8    /**
 9    *
 10    */
 11    private static final long serialVersionUID = 1L;
 12   
 13  0 public IntrospectionSystemException(String s) {
 14  0 super(s);
 15    }
 16   
 17  0 public IntrospectionSystemException(IntrospectionException e) {
 18  0 super(e);
 19    }
 20   
 21    }