All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.uhn.hl7v2.hoh.api.EncodeException Maven / Gradle / Ivy

The newest version!
package ca.uhn.hl7v2.hoh.api;


public class EncodeException extends Exception {

	private static final long serialVersionUID = 1L;

	public EncodeException(Exception theCause) {
		super(theCause);
	}

	public EncodeException(String theCause) {
		super(theCause);
	}

	public EncodeException(String theString, Exception theCause) {
		super(theString, theCause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy