Clover coverage report -
Coverage timestamp: Sat Feb 28 2004 21:40:56 EST
file stats: LOC: 30   Methods: 2
NCLOC: 8   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
CachePersistenceException.java - 100% 50% 66.7%
coverage coverage
 1   
 /*
 2   
  * Copyright (c) 2002-2003 by OpenSymphony
 3   
  * All rights reserved.
 4   
  */
 5   
 package com.opensymphony.oscache.base.persistence;
 6   
 
 7   
 
 8   
 /**
 9   
  * Exception thrown when an error occurs in a PersistenceListener implementation.
 10   
  *
 11   
  * @version        $Revision: 1.1 $
 12   
  * @author <a href="mailto:fbeauregard@pyxis-tech.com">Francois Beauregard</a>
 13   
  */
 14   
 public final class CachePersistenceException extends Exception {
 15   
     /**
 16   
      * Creates new CachePersistenceException without detail message.
 17   
      */
 18  0
     public CachePersistenceException() {
 19   
     }
 20   
 
 21   
     /**
 22   
      * Constructs an CachePersistenceException with the specified detail message.
 23   
      *
 24   
      * @param msg the detail message.
 25   
      */
 26  15
     public CachePersistenceException(String msg) {
 27  15
         super(msg);
 28   
     }
 29   
 }
 30