Files
alfresco-community-repo/source/generated/org/alfresco/repo/cmis/ws/ContentAlreadyExistsException.java
2008-09-07 13:04:45 +00:00

46 lines
1.5 KiB
Java
Executable File

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 = "contentAlreadyExistsException", targetNamespace = "http://www.cmis.org/2008/05")
public class ContentAlreadyExistsException extends Exception {
public static final long serialVersionUID = 20080905134438L;
private org.alfresco.repo.cmis.ws.ContentAlreadyExistsExceptionType contentAlreadyExistsException;
public ContentAlreadyExistsException() {
super();
}
public ContentAlreadyExistsException(String message) {
super(message);
}
public ContentAlreadyExistsException(String message, Throwable cause) {
super(message, cause);
}
public ContentAlreadyExistsException(String message, org.alfresco.repo.cmis.ws.ContentAlreadyExistsExceptionType contentAlreadyExistsException) {
super(message);
this.contentAlreadyExistsException = contentAlreadyExistsException;
}
public ContentAlreadyExistsException(String message, org.alfresco.repo.cmis.ws.ContentAlreadyExistsExceptionType contentAlreadyExistsException, Throwable cause) {
super(message, cause);
this.contentAlreadyExistsException = contentAlreadyExistsException;
}
public org.alfresco.repo.cmis.ws.ContentAlreadyExistsExceptionType getFaultInfo() {
return this.contentAlreadyExistsException;
}
}