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