Coverage details for umich.cac.pbs.InvalidRecordException

LineHitsSource
1 package umich.cac.pbs;
2  
3 /**
4  * Indicates a invalid record type was encountered
5  *
6  * @author rmach@umich.edu
7  * @version $Header: /cvsroot/pbsaccounting/pbsaccounting/src/umich/cac/pbs/InvalidRecordException.java,v 1.3 2003/10/21 19:07:59 rodmach Exp $
8  */
9 public class InvalidRecordException extends Exception {
10  
11     /** Overriding Throwable default constructor. */
12     public InvalidRecordException() {
130        super();
140    }
15  
16     /**
17      * Overriding Throwable constructor from older JDKs.
18      *
19      * @param message
20      */
21     public InvalidRecordException(String message) {
226        super(message);
236    }
24  
25     /**
26      * Overriding Throwable constructor from JDK1.4, for handling Exception
27      * chaining.
28      *
29      * @param message
30      * @param cause
31      * Description of the Parameter
32      */
33     public InvalidRecordException(String message, Throwable cause) {
340        super(message, cause);
350    }
36  
37     /**
38      * Overriding Throwable constructor from JDK1.4, for handling Exception
39      * chaining.
40      *
41      * @param cause
42      * Description of the Parameter
43      */
44     public InvalidRecordException(Throwable cause) {
450        super(cause);
460    }
47 }

this report was generated by version 1.0.5 of jcoverage.
visit www.jcoverage.com for updates.

copyright © 2003, jcoverage ltd. all rights reserved.
Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.