ca.uhn.hl7v2.hoh.api.DecodeException Maven / Gradle / Ivy
package ca.uhn.hl7v2.hoh.api;
public class DecodeException extends Exception {
private static final long serialVersionUID = 1L;
public DecodeException(String theMessage) {
super(theMessage);
}
public DecodeException(String theMessage, Throwable theCause) {
super(theMessage, theCause);
}
}