Coverage Report - ca.uhn.hl7v2.hoh.api.MessageProcessingException
 
Classes in this File Line Coverage Branch Coverage Complexity
MessageProcessingException
0%
0/6
N/A
1
 
 1  
 package ca.uhn.hl7v2.hoh.api;
 2  
 
 3  
 
 4  
 public class MessageProcessingException extends Exception {
 5  
 
 6  
         private static final long serialVersionUID = 1L;
 7  
 
 8  
         public MessageProcessingException(String theMessage) {
 9  0
                 super(theMessage);
 10  0
         }
 11  
         
 12  
         public MessageProcessingException(String theMessage, Throwable theCause) {
 13  0
                 super(theMessage, theCause);
 14  0
         }
 15  
 
 16  
         public MessageProcessingException(Throwable theCause) {
 17  0
                 super(theCause);
 18  0
         }
 19  
 
 20  
         
 21  
 }