mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merge from SEAMIST3
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10722 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
|
||||
package org.alfresco.repo.cmis.ws;
|
||||
|
||||
import javax.xml.ws.WebFault;
|
||||
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 2.0.6
|
||||
* Tue May 27 14:11:27 EEST 2008
|
||||
* Generated source version: 2.0.6
|
||||
*
|
||||
*/
|
||||
|
||||
@WebFault(name = "ObjectNotFoundFault", targetNamespace = "http://www.cmis.org/ns/1.0")
|
||||
|
||||
public class ObjectNotFoundException extends Exception {
|
||||
public static final long serialVersionUID = 20080527141127L;
|
||||
|
||||
private org.alfresco.repo.cmis.ws.BasicFault objectNotFoundFault;
|
||||
|
||||
public ObjectNotFoundException() {
|
||||
super();
|
||||
}
|
||||
|
||||
public ObjectNotFoundException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public ObjectNotFoundException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public ObjectNotFoundException(String message, org.alfresco.repo.cmis.ws.BasicFault objectNotFoundFault) {
|
||||
super(message);
|
||||
this.objectNotFoundFault = objectNotFoundFault;
|
||||
}
|
||||
|
||||
public ObjectNotFoundException(String message, org.alfresco.repo.cmis.ws.BasicFault objectNotFoundFault, Throwable cause) {
|
||||
super(message, cause);
|
||||
this.objectNotFoundFault = objectNotFoundFault;
|
||||
}
|
||||
|
||||
public org.alfresco.repo.cmis.ws.BasicFault getFaultInfo() {
|
||||
return this.objectNotFoundFault;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user