Coverage Report - ca.uhn.hl7v2.conf.check.ProfileNotHL7CompliantException
 
Classes in this File Line Coverage Branch Coverage Complexity
ProfileNotHL7CompliantException
50%
2/4
N/A
1
 
 1  
 package ca.uhn.hl7v2.conf.check;
 2  
 
 3  
 /**
 4  
  * An exception indicating that a static profile doesn't correspond to HL7 rules.  
 5  
  * @author Bryan Tripp
 6  
  */
 7  
 @SuppressWarnings("serial")
 8  
 public class ProfileNotHL7CompliantException extends ca.uhn.hl7v2.HL7Exception {
 9  
     
 10  
     /**
 11  
      * Constructs an instance of <code>ProfileNotHL7CompliantHL7Exception</code> with the specified detail message.
 12  
      * @param msg the detail message.
 13  
      */
 14  
     public ProfileNotHL7CompliantException(String msg) {
 15  55
         super(msg);
 16  55
     }
 17  
 
 18  
     /**
 19  
      * Constructs an instance of <code>ProfileNotHL7CompliantHL7Exception</code> with the specified detail message.
 20  
      * @param msg the detail message.
 21  
      * @param cause an underlying exception 
 22  
      */
 23  
     public ProfileNotHL7CompliantException(String msg, Throwable cause) {
 24  0
         super(msg, cause);
 25  0
     }
 26  
 
 27  
 }