Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 44   Methods: 5
NCLOC: 25   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ReplicationException.java - 40% 40% 40%
coverage coverage
 1    // $Id: ReplicationException.java,v 1.5 2006/12/11 21:14:34 genman Exp $
 2   
 3    /*
 4    * JBoss, the OpenSource J2EE webOS
 5    *
 6    * Distributable under LGPL license.
 7    * See terms of license at gnu.org.
 8    */
 9   
 10    package org.jboss.cache;
 11   
 12    /**
 13    * Thrown when a replication problem occurred
 14    */
 15    public class ReplicationException extends CacheException
 16    {
 17   
 18    private static final long serialVersionUID = 33172388691879866L;
 19   
 20  0 public ReplicationException()
 21    {
 22  0 super();
 23    }
 24   
 25  0 public ReplicationException(Throwable cause)
 26    {
 27  0 super(cause);
 28    }
 29   
 30  0 public ReplicationException(String msg)
 31    {
 32  0 super(msg);
 33    }
 34   
 35  22 public ReplicationException(String msg, Throwable cause)
 36    {
 37  22 super(msg, cause);
 38    }
 39   
 40  4 public String toString()
 41    {
 42  4 return super.toString();
 43    }
 44    }