Coverage Report - org.kuali.rice.kew.api.document.InvalidDocumentContentException
 
Classes in this File Line Coverage Branch Coverage Complexity
InvalidDocumentContentException
0%
0/8
N/A
1
 
 1  
 package org.kuali.rice.kew.api.document;
 2  
 
 3  
 import javax.xml.ws.WebFault;
 4  
 
 5  
 import org.kuali.rice.kew.api.KewApiConstants;
 6  
 import org.kuali.rice.kew.api.WorkflowRuntimeException;
 7  
 
 8  
 @WebFault(name = "InvalidDocumentContentFault", targetNamespace = KewApiConstants.Namespaces.KEW_NAMESPACE_2_0)
 9  
 public class InvalidDocumentContentException extends WorkflowRuntimeException {
 10  
     
 11  
     private static final long serialVersionUID = -7192699210643743641L;
 12  
 
 13  
     public InvalidDocumentContentException() {
 14  0
         super();
 15  0
     }
 16  
     
 17  
     public InvalidDocumentContentException(String message) {
 18  0
         super(message);
 19  0
     }
 20  
 
 21  
     public InvalidDocumentContentException(Throwable t) {
 22  0
         super(t);
 23  0
     }
 24  
 
 25  
     public InvalidDocumentContentException(String message, Throwable t) {
 26  0
         super(message, t);
 27  0
     }
 28  
 }