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