Clover coverage report - Cactus 1.4 for J2EE API 12
Coverage timestamp: Sun Aug 25 2002 18:00:03 BST
file stats: LOC: 37   Methods: 3
NCLOC: 15   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ParsingException.java - 0% 0% 0%
 1   
 /*   Generated by AspectJ version 1.0.5 */
 2   
 package org.apache.cactus.client;
 3   
 import org.apache.cactus.util.ChainedException;
 4   
 
 5   
 /** 
 6   
  * Thrown when parsing the Web Test result (XML) and trying to build a 
 7   
  * <code>WebTestResult</code> object. 
 8   
  * 
 9   
  * @see WebTestResultParser 
 10   
  * 
 11   
  * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a> 
 12   
  * 
 13   
  * @version $Id: ParsingException.java,v 1.1 2002/05/01 19:52:27 vmassol Exp $ 
 14   
  */
 15   
 public class ParsingException extends ChainedException {
 16   
   /** 
 17   
        * @see ChainedException#ChainedException(String) 
 18   
        */
 19  0
   public ParsingException(String theMessage) {
 20  0
     super(theMessage);
 21   
     ;
 22   
   } 
 23   
   /** 
 24   
        * @see ChainedException#ChainedException(Throwable) 
 25   
        */
 26  0
   public ParsingException(Throwable theException) {
 27  0
     super(theException);
 28   
     ;
 29   
   } 
 30   
   /** 
 31   
        * @see ChainedException#ChainedException(String, Throwable) 
 32   
        */
 33  0
   public ParsingException(String theMessage, Throwable theException) {
 34  0
     super(theMessage, theException);
 35   
     ;
 36   
   } 
 37   
 }