1 package ca.uhn.hl7v2.hoh.api; 2 3 4 public class EncodeException extends Exception { 5 6 private static final long serialVersionUID = 1L; 7 8 public EncodeException(Exception theCause) { 9 super(theCause); 10 } 11 12 public EncodeException(String theCause) { 13 super(theCause); 14 } 15 16 public EncodeException(String theString, Exception theCause) { 17 super(theString, theCause); 18 } 19 20 }