Coverage Report - org.kuali.rice.kew.api.doctype.DocumentTypeNotFoundException
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentTypeNotFoundException
0%
0/8
N/A
1
 
 1  
 package org.kuali.rice.kew.api.doctype;
 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  
 /**
 9  
  * An exception which is thrown when a DocumentType cannot be found.
 10  
  * 
 11  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 12  
  */
 13  
 @WebFault(name = "DocumentTypeNotFoundFault", targetNamespace = KewApiConstants.Namespaces.KEW_NAMESPACE_2_0)
 14  
 public class DocumentTypeNotFoundException extends WorkflowRuntimeException {
 15  
 
 16  
         private static final long serialVersionUID = 5896411514876640531L;
 17  
 
 18  
         public DocumentTypeNotFoundException() {
 19  0
                 super();
 20  0
         }
 21  
 
 22  
         public DocumentTypeNotFoundException(String message, Throwable cause) {
 23  0
                 super(message, cause);
 24  0
         }
 25  
 
 26  
         public DocumentTypeNotFoundException(String message) {
 27  0
                 super(message);
 28  0
         }
 29  
 
 30  
         public DocumentTypeNotFoundException(Throwable cause) {
 31  0
                 super(cause);
 32  0
         }
 33  
         
 34  
 }