Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
DecodeException |
|
| 1.0;1 |
1 | package ca.uhn.hl7v2.hoh.api; | |
2 | ||
3 | ||
4 | public class DecodeException extends Exception { | |
5 | ||
6 | private static final long serialVersionUID = 1L; | |
7 | ||
8 | public DecodeException(String theMessage) { | |
9 | 0 | super(theMessage); |
10 | 0 | } |
11 | ||
12 | public DecodeException(String theMessage, Throwable theCause) { | |
13 | 0 | super(theMessage, theCause); |
14 | 0 | } |
15 | ||
16 | } |