Coverage Report - org.kuali.core.db.torque.PropertyHandlingException
 
Classes in this File Line Coverage Branch Coverage Complexity
PropertyHandlingException
0%
0/8
N/A
1
 
 1  
 package org.kuali.core.db.torque;
 2  
 
 3  
 @SuppressWarnings("serial")
 4  
 public class PropertyHandlingException extends Exception {
 5  
 
 6  0
         public PropertyHandlingException() {
 7  0
         }
 8  
 
 9  
         public PropertyHandlingException(String message) {
 10  0
                 super(message);
 11  0
         }
 12  
 
 13  
         public PropertyHandlingException(Throwable cause) {
 14  0
                 super(cause);
 15  0
         }
 16  
 
 17  
         public PropertyHandlingException(String message, Throwable cause) {
 18  0
                 super(message, cause);
 19  0
         }
 20  
 }