Clover coverage report - JFox Service-Oriented Application Framework - 1.0-M2
Coverage timestamp: 星期四 十一月 25 2004 17:14:11 PST
file stats: LOC: 65   Methods: 4
NCLOC: 15   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
DataSourceConfigurationException.java - 0% 0% 0%
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   
 import com.ibatis.common.exception.NestedRuntimeException;
 14   
 
 15   
 /**
 16   
  * Represents exceptions raised when a database configration file error.
 17   
  * 
 18   
  * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
 19   
  * @version $Revision: 1.1 $ $Date: 2004/10/28 15:29:01 $
 20   
  * @version Revision: 1.0
 21   
  */
 22   
 
 23   
 public class DataSourceConfigurationException extends NestedRuntimeException {
 24   
 
 25   
     /**
 26   
      * Construct a new exception with no cause and no detail message. Note
 27   
      * modern JVMs may still track the exception that caused this one.
 28   
      */
 29  0
     public DataSourceConfigurationException() {
 30   
     }
 31   
 
 32   
     /**
 33   
      * Construct a new exception with no cause and the specified detail message.
 34   
      * Note modern JVMs may still track the exception that caused this one.
 35   
      * 
 36   
      * @param message
 37   
      *            the message detailing the exception.
 38   
      */
 39  0
     public DataSourceConfigurationException(final String message) {
 40  0
         super(message);
 41   
 
 42   
     }
 43   
 
 44   
     /**
 45   
      * Construct a new exception with the specified cause and no detail message.
 46   
      * 
 47   
      * @param cause
 48   
      *            the exception that caused this one.
 49   
      */
 50  0
     public DataSourceConfigurationException(final String message,
 51   
             final Throwable cause) {
 52  0
         super(message, cause);
 53   
     }
 54   
 
 55   
     /**
 56   
      * Construct a new exception with the specified cause and no detail message.
 57   
      * 
 58   
      * @param cause
 59   
      *            the exception that caused this one.
 60   
      */
 61  0
     public DataSourceConfigurationException(final Throwable cause) {
 62  0
         super(cause);
 63   
     }
 64   
 
 65   
 }