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