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