| Line | Hits | Source |
|---|---|---|
| 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() { | |
| 13 | 0 | super(); |
| 14 | 0 | } |
| 15 | ||
| 16 | /** | |
| 17 | * Overriding Throwable constructor from older JDKs. | |
| 18 | * | |
| 19 | * @param message | |
| 20 | */ | |
| 21 | public InvalidRecordException(String message) { | |
| 22 | 6 | super(message); |
| 23 | 6 | } |
| 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) { | |
| 34 | 0 | super(message, cause); |
| 35 | 0 | } |
| 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) { | |
| 45 | 0 | super(cause); |
| 46 | 0 | } |
| 47 | } |
|
this report was generated by version 1.0.5 of jcoverage. |
copyright © 2003, jcoverage ltd. all rights reserved. |