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