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