mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10831 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
46 lines
1.2 KiB
Java
46 lines
1.2 KiB
Java
|
|
package org.alfresco.repo.cmis.ws;
|
|
|
|
import javax.xml.ws.WebFault;
|
|
|
|
|
|
/**
|
|
* This class was generated by Apache CXF 2.1.2
|
|
* Fri Sep 05 13:44:38 EEST 2008
|
|
* Generated source version: 2.1.2
|
|
*
|
|
*/
|
|
|
|
@WebFault(name = "offsetException", targetNamespace = "http://www.cmis.org/2008/05")
|
|
public class OffsetException extends Exception {
|
|
public static final long serialVersionUID = 20080905134438L;
|
|
|
|
private org.alfresco.repo.cmis.ws.OffsetExceptionType offsetException;
|
|
|
|
public OffsetException() {
|
|
super();
|
|
}
|
|
|
|
public OffsetException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public OffsetException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public OffsetException(String message, org.alfresco.repo.cmis.ws.OffsetExceptionType offsetException) {
|
|
super(message);
|
|
this.offsetException = offsetException;
|
|
}
|
|
|
|
public OffsetException(String message, org.alfresco.repo.cmis.ws.OffsetExceptionType offsetException, Throwable cause) {
|
|
super(message, cause);
|
|
this.offsetException = offsetException;
|
|
}
|
|
|
|
public org.alfresco.repo.cmis.ws.OffsetExceptionType getFaultInfo() {
|
|
return this.offsetException;
|
|
}
|
|
}
|