| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ProfileNotFollowedException |
|
| 1.0;1 |
| 1 | package ca.uhn.hl7v2.conf.check; | |
| 2 | ||
| 3 | /** | |
| 4 | * An exception indicating that some message contents don't reflect a static profile. | |
| 5 | * @author Bryan Tripp | |
| 6 | */ | |
| 7 | @SuppressWarnings("serial") | |
| 8 | public class ProfileNotFollowedException extends ca.uhn.hl7v2.HL7Exception { | |
| 9 | ||
| 10 | /** | |
| 11 | * Constructs an instance of <code>ProfileNotFollowedException</code> with the specified detail message. | |
| 12 | * @param msg the detail message. | |
| 13 | */ | |
| 14 | public ProfileNotFollowedException(String msg) { | |
| 15 | 235 | super(msg); |
| 16 | 235 | } |
| 17 | ||
| 18 | ||
| 19 | } |