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