Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:42:32 CET
file stats: LOC: 16   Methods: 1
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ClassNotFoundSystemException.java - 100% 100% 100%
coverage
 1    package com.agical.rmock.core.exception.reflection;
 2   
 3    import com.agical.rmock.core.exception.RMockSystemException;
 4   
 5    public class ClassNotFoundSystemException extends RMockSystemException {
 6   
 7    /**
 8    *
 9    */
 10    private static final long serialVersionUID = 1L;
 11   
 12  1 public ClassNotFoundSystemException(String name) {
 13  1 super ("Could not find the class: "+name);
 14    }
 15   
 16    }