Coverage Report - org.kuali.rice.core.api.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.api.util.xml;
 2  
 
 3  
 import org.kuali.rice.core.api.CoreConstants;
 4  
 
 5  
 import javax.xml.ws.WebFault;
 6  
 
 7  
 @WebFault(name = "XmlFault", targetNamespace = CoreConstants.Namespaces.CORE_NAMESPACE_2_0)
 8  
 public class XmlException extends RuntimeException {
 9  
     
 10  
     private static final long serialVersionUID = 5859837720372502809L;
 11  
 
 12  
     public XmlException(String message) {
 13  0
         super(message);
 14  0
     }
 15  
 
 16  
     public XmlException(Throwable t) {
 17  0
         super(t);
 18  0
     }
 19  
 
 20  
     public XmlException(String message, Throwable t) {
 21  0
         super(message, t);
 22  0
     }
 23  
 }