Coverage Report - org.kuali.rice.core.util.xml.XmlException
 
Classes in this File Line Coverage Branch Coverage Complexity
XmlException
0%
0/6
N/A
1
 
 1  
 package org.kuali.rice.core.util.xml;
 2  
 
 3  
 public class XmlException extends RuntimeException {
 4  
     public XmlException(String message) {
 5  0
         super(message);
 6  0
     }
 7  
 
 8  
     public XmlException(Throwable t) {
 9  0
         super(t);
 10  0
     }
 11  
 
 12  
     public XmlException(String message, Throwable t) {
 13  0
         super(message, t);
 14  0
     }
 15  
 }