Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 42   Methods: 3
NCLOC: 13   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
NodeNotExistsException.java - 33.3% 33.3% 33.3%
coverage coverage
 1    // $Id: NodeNotExistsException.java,v 1.2 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   
 14   
 15    /**
 16    * Thrown when an operation is attempted on a non-existing node in the cache
 17    *
 18    * @author <a href="mailto:bela@jboss.com">Bela Ban</a>.
 19    * @version $Id: NodeNotExistsException.java,v 1.2 2006/12/11 21:14:34 genman Exp $
 20    */
 21   
 22    public class NodeNotExistsException extends CacheException {
 23   
 24    private static final long serialVersionUID = 779376138690777440L;
 25   
 26  0 public NodeNotExistsException() {
 27  0 super();
 28    }
 29   
 30   
 31  1 public NodeNotExistsException(String msg) {
 32  1 super(msg);
 33    }
 34   
 35   
 36  0 public NodeNotExistsException(String msg, Throwable cause) {
 37  0 super(msg, cause);
 38    }
 39   
 40   
 41   
 42    }