Clover coverage report - J2EE Deployment - 1.0.0
Coverage timestamp: sam. déc. 27 2003 15:14:34 CET
file stats: LOC: 30   Methods: 1
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
DeploymentManagerCreationException.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 problems in returning a DeploymentManager object cause
 12   
  * by such things as server down, unable to authenticate and the like.
 13   
  *
 14   
  * @author    Laurent Etiemble
 15   
  * @version   $Revision: 1.1 $
 16   
  * @since     1.0
 17   
  */
 18   
 public class DeploymentManagerCreationException extends Exception
 19   
 {
 20   
    /**
 21   
     * Creates an new <code>DeploymentManagerCreationException</code> object.
 22   
     *
 23   
     * @param s  a string providing more information about the problem.
 24   
     */
 25  0
    public DeploymentManagerCreationException(String s)
 26   
    {
 27  0
       super(s);
 28   
    }
 29   
 }
 30