1 package ca.uhn.hl7v2.hoh.sign;
2
3
4 public class SignatureFailureException extends Exception {
5
6 private static final long serialVersionUID = 1L;
7
8 public SignatureFailureException(Exception theE) {
9 super(theE);
10 }
11
12 public SignatureFailureException(String theMessage) {
13 super(theMessage);
14 }
15
16 public SignatureFailureException(String theMessage, Exception theCause) {
17 super(theMessage, theCause);
18 }
19
20 }