Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 30   Methods: 3
NCLOC: 18   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
InactiveRegionException.java - 33.3% 33.3% 33.3%
coverage coverage
 1    package org.jboss.cache.marshall;
 2   
 3    import org.jboss.cache.CacheException;
 4   
 5    /**
 6    * Thrown by a {@link org.jboss.cache.marshall.AbstractMarshaller} instance when attempting to perform an operation on an inactive region.
 7    *
 8    * @author <a href="mailto:manik@jboss.org">Manik Surtani</a>
 9    * @since 2.0.0
 10    */
 11    public class InactiveRegionException extends CacheException
 12    {
 13   
 14    private static final long serialVersionUID = -5672201755094521936L;
 15   
 16  0 public InactiveRegionException()
 17    {
 18  0 super();
 19    }
 20   
 21  150 public InactiveRegionException(String msg)
 22    {
 23  150 super(msg);
 24    }
 25   
 26  0 public InactiveRegionException(String msg, Throwable cause)
 27    {
 28  0 super(msg, cause);
 29    }
 30    }