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 | |
|
10 | |
|
11 | |
|
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 | |
} |