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