Clover coverage report - JFox Service-Oriented Application Framework - 1.0-M2
Coverage timestamp: 星期四 十一月 25 2004 17:14:11 PST
file stats: LOC: 63   Methods: 4
NCLOC: 13   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
ServiceLocatorException.java - 33.3% 25% 28.6%
coverage coverage
 1   
 /**
 2   
  * JFoxSOAF, Service-Oriented Application Framework
 3   
  * 
 4   
  * Copyright (C) www.huihoo.org
 5   
  *
 6   
  * Distributable under GNU LGPL license
 7   
  * 
 8   
  * For more information, please visit: http://www.huihoo.org/jfox/jfoxsoaf
 9   
  */
 10   
 
 11   
 package org.huihoo.jfox.soaf.exception;
 12   
 
 13   
 /**
 14   
  * Represents exceptions raised when lookup service from JNDI.
 15   
  * 
 16   
  * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
 17   
  * @version $Revision: 1.5 $ $Date: 2004/10/29 12:48:16 $
 18   
  * @version Revision: 1.0
 19   
  */
 20   
 
 21   
 public class ServiceLocatorException extends NestedRuntimeException {
 22   
 
 23   
     /**
 24   
      * Construct a new exception with no cause and no detail message.
 25   
      */
 26  0
     public ServiceLocatorException() {
 27   
     }
 28   
 
 29   
     /**
 30   
      * Construct a new exception with no cause and the specified detail message.
 31   
      * Note modern JVMs may still track the exception that caused this one.
 32   
      * 
 33   
      * @param message
 34   
      *            the message detailing the exception.
 35   
      */
 36  0
     public ServiceLocatorException(final String message) {
 37  0
         super(message);
 38   
     }
 39   
 
 40   
     /**
 41   
      * Construct a new exception with the specified cause and no detail message.
 42   
      * 
 43   
      * @param cause
 44   
      *            the exception that caused this one.
 45   
      */
 46  3
     public ServiceLocatorException(final Throwable cause) {
 47  3
         super(cause);
 48   
     }
 49   
 
 50   
     /**
 51   
      * Construct a new exception with the specified cause and the specified
 52   
      * detail message.
 53   
      * 
 54   
      * @param message
 55   
      *            the message detailing the exception.
 56   
      * @param cause
 57   
      *            the exception that caused this one.
 58   
      */
 59  0
     public ServiceLocatorException(final String message, final Throwable cause) {
 60  0
         super(message, cause);
 61   
     }
 62   
 
 63   
 }