Clover coverage report -
Coverage timestamp: Fri Jul 2 2004 18:04:44 CEST
file stats: LOC: 24   Methods: 2
NCLOC: 9   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
InitializationException.java - 0% 0% 0%
coverage
 1   
 /*
 2   
  * Copyright (c) 2002-2003 by OpenSymphony
 3   
  * All rights reserved.
 4   
  */
 5   
 package com.opensymphony.oscache.base;
 6   
 
 7   
 
 8   
 /**
 9   
  * Thrown by {@link LifecycleAware} listeners that are not able to initialize
 10   
  * themselves.
 11   
  *
 12   
  * @version $Revision: 1.1 $
 13   
  * @author <a href="&#109;a&#105;&#108;&#116;&#111;:chris&#64;swebtec.&#99;&#111;&#109;">Chris Miller</a>
 14   
  */
 15   
 public class InitializationException extends Exception {
 16  0
     public InitializationException() {
 17  0
         super();
 18   
     }
 19   
 
 20  0
     public InitializationException(String message) {
 21  0
         super(message);
 22   
     }
 23   
 }
 24