Coverage Report - org.kuali.maven.plugins.dnsme.DNSMEException
 
Classes in this File Line Coverage Branch Coverage Complexity
DNSMEException
25%
2/8
N/A
1
 
 1  
 package org.kuali.maven.plugins.dnsme;
 2  
 
 3  
 public class DNSMEException extends RuntimeException {
 4  
 
 5  
     private static final long serialVersionUID = 1991386822732240500L;
 6  
 
 7  0
     public DNSMEException() {
 8  0
     }
 9  
 
 10  
     public DNSMEException(String message) {
 11  1
         super(message);
 12  1
     }
 13  
 
 14  
     public DNSMEException(Throwable cause) {
 15  0
         super(cause);
 16  0
     }
 17  
 
 18  
     public DNSMEException(String message, Throwable cause) {
 19  0
         super(message, cause);
 20  0
     }
 21  
 
 22  
 }