Clover coverage report - Maven Clover report
Coverage timestamp: Sun Mar 18 2007 17:42:32 CET
file stats: LOC: 24   Methods: 3
NCLOC: 13   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ReferenceOutOfScopeException.java - 33.3% 33.3% 33.3%
coverage coverage
 1    package com.agical.rmock.core.hub;
 2   
 3    import com.agical.rmock.core.exception.RMockSystemException;
 4   
 5    /**
 6    * @author brolund
 7    *
 8    * (c) 2005 Agical AB
 9    */
 10    public class ReferenceOutOfScopeException extends RMockSystemException {
 11   
 12  2 public ReferenceOutOfScopeException(String s) {
 13  2 super(s);
 14    }
 15   
 16  0 public ReferenceOutOfScopeException(String msg, Throwable cause) {
 17  0 super(msg, cause);
 18    }
 19   
 20  0 public ReferenceOutOfScopeException(Throwable cause) {
 21  0 super(cause);
 22    }
 23   
 24    }