package ca.uhn.hl7v2.conf.check;
/**
* An exception indicating that some message contents don't reflect a static profile.
* @author Bryan Tripp
*/
public class ProfileNotFollowedException extends ca.uhn.hl7v2.HL7Exception {
/**
* Constructs an instance of ProfileNotFollowedException
with the specified detail message.
* @param msg the detail message.
*/
public ProfileNotFollowedException(String msg) {
super(msg);
}
/**
* Constructs an instance of ProfileNotFollowedException
with the specified detail message.
* @param msg the detail message.
* @param cause an underlying exception
*/
/*public ProfileNotFollowedException(String msg, Throwable cause) {
super(msg, cause);
}*/
}