Clover coverage report - J2EE Deployment - 1.0.0
Coverage timestamp: sam. déc. 27 2003 15:14:34 CET
file stats: LOC: 29   Methods: 1
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
BeanNotFoundException.java - 0% 0% 0%
coverage
 1   
 /*
 2   
  * EJTools, the Enterprise Java Tools
 3   
  *
 4   
  * Distributable under LGPL license.
 5   
  * See terms of license at www.gnu.org.
 6   
  */
 7   
 package javax.enterprise.deploy.spi.exceptions;
 8   
 
 9   
 
 10   
 /**
 11   
  * This exception is to report that the bean is not a child of the parent bean.
 12   
  *
 13   
  * @author    Laurent Etiemble
 14   
  * @version   $Revision: 1.1 $
 15   
  * @since     1.0
 16   
  */
 17   
 public class BeanNotFoundException extends Exception
 18   
 {
 19   
    /**
 20   
     * Creates an new <code>BeanNotFoundException</code> object.
 21   
     *
 22   
     * @param s  a string indicating what was wrong with the Bean.
 23   
     */
 24  0
    public BeanNotFoundException(String s)
 25   
    {
 26  0
       super(s);
 27   
    }
 28   
 }
 29