Clover coverage report - J2EE Deployment - 1.0.0
Coverage timestamp: sam. déc. 27 2003 15:14:34 CET
file stats: LOC: 37   Methods: 2
NCLOC: 12   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ClientExecuteException.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 reports errors in setting up an application client for execution.
 12   
  *
 13   
  * @author    Laurent Etiemble
 14   
  * @version   $Revision: 1.1 $
 15   
  * @since     1.0
 16   
  */
 17   
 public class ClientExecuteException extends Exception
 18   
 {
 19   
    /** Creates new <code>ClientExecuteException</code> without detail message. */
 20  0
    public ClientExecuteException()
 21   
    {
 22  0
       super();
 23   
    }
 24   
 
 25   
 
 26   
    /**
 27   
     * Constructs an <code>ClientExecuteException</code> with the specified detail
 28   
     * message.
 29   
     *
 30   
     * @param msg  the detail message.
 31   
     */
 32  0
    public ClientExecuteException(String msg)
 33   
    {
 34  0
       super(msg);
 35   
    }
 36   
 }
 37