Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 40   Methods: 4
NCLOC: 21   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
PojoCacheException.java - 50% 50% 50%
coverage coverage
 1    /*
 2    * JBoss, Home of Professional Open Source
 3    *
 4    * Distributable under LGPL license.
 5    * See terms of license at gnu.org.
 6    */
 7   
 8    package org.jboss.cache.pojo;
 9   
 10    /**
 11    * Generic PojoCacheException.
 12    *
 13    * @author Ben Wang
 14    * @version $Id: PojoCacheException.java,v 1.2 2007/05/22 02:31:46 bstansberry Exp $
 15    */
 16    public class PojoCacheException extends RuntimeException
 17    {
 18    /** The serialVersionUID */
 19    private static final long serialVersionUID = -2879024229641921582L;
 20   
 21  0 public PojoCacheException()
 22    {
 23  0 super();
 24    }
 25   
 26  5 public PojoCacheException(String err, Throwable e)
 27    {
 28  5 super(err, e);
 29    }
 30   
 31  6 public PojoCacheException(String err)
 32    {
 33  6 super(err);
 34    }
 35   
 36  0 public PojoCacheException(Throwable e)
 37    {
 38  0 super(e);
 39    }
 40    }