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 public SignatureVerificationException() { 9 } 10 11 public SignatureVerificationException(Exception theE) { 12 super(theE); 13 } 14 15 public SignatureVerificationException(String theMessage) { 16 super(theMessage); 17 } 18 19 }