Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 49   Methods: 4
NCLOC: 21   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
OwnerNotExistedException.java - 0% 0% 0%
coverage
 1    /*
 2    * JBoss, the OpenSource J2EE webOS
 3    *
 4    * Distributable under LGPL license.
 5    * See terms of license at gnu.org.
 6    */
 7    package org.jboss.cache.lock;
 8    /**
 9    * @author Ben
 10    */
 11    public class OwnerNotExistedException extends Exception
 12    {
 13   
 14    private static final long serialVersionUID = 2837393571654438480L;
 15   
 16    /**
 17    *
 18    */
 19  0 public OwnerNotExistedException()
 20    {
 21  0 super();
 22    }
 23   
 24    /**
 25    * @param message
 26    */
 27  0 public OwnerNotExistedException(String message)
 28    {
 29  0 super(message);
 30    }
 31   
 32    /**
 33    * @param message
 34    * @param cause
 35    */
 36  0 public OwnerNotExistedException(String message, Throwable cause)
 37    {
 38  0 super(message, cause);
 39    }
 40   
 41    /**
 42    * @param cause
 43    */
 44  0 public OwnerNotExistedException(Throwable cause)
 45    {
 46  0 super(cause);
 47    }
 48   
 49    }