Coverage Report - ca.uhn.hl7v2.conf.check.XElementPresentException
 
Classes in this File Line Coverage Branch Coverage Complexity
XElementPresentException
100%
2/2
N/A
1
 
 1  
 package ca.uhn.hl7v2.conf.check;
 2  
 
 3  
 /**
 4  
  * An element that a profile defines as "not used" (X) is present in the 
 5  
  * message.  
 6  
  * @author Bryan Tripp
 7  
  */
 8  
 @SuppressWarnings("serial")
 9  
 public class XElementPresentException extends ProfileNotFollowedException {        
 10  
     
 11  
     /**
 12  
      * Constructs an instance of <code>XElementPresentException</code> with the specified detail message.
 13  
      * @param msg the detail message.
 14  
      */
 15  
     public XElementPresentException(String msg) {
 16  20
         super(msg);
 17  20
     }
 18  
 
 19  
 }