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