001package ca.uhn.hl7v2.hoh.sign;
002
003
004public class SignatureFailureException extends Exception {
005
006        private static final long serialVersionUID = 1L;
007
008        public SignatureFailureException(Exception theE) {
009                super(theE);
010        }
011
012        public SignatureFailureException(String theMessage) {
013                super(theMessage);
014        }
015
016        public SignatureFailureException(String theMessage, Exception theCause) {
017                super(theMessage, theCause);
018        }
019
020}