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