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

ca.uhn.hl7v2.hoh.encoder.AuthorizationFailureException Maven / Gradle / Ivy

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

import ca.uhn.hl7v2.hoh.api.DecodeException;

public class AuthorizationFailureException extends DecodeException {
	private static final long serialVersionUID = 1L;

	public AuthorizationFailureException(String theMessage) {
		super(theMessage);
	}

	public AuthorizationFailureException(String theMessage, Throwable theCause) {
		super(theMessage, theCause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy