View Javadoc
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          super(msg);
16      }
17  
18  
19  }