package org.alfresco.repo.cmis.ws; import javax.xml.ws.WebFault; /** * This class was generated by Apache CXF 2.0.6 * Tue Jul 29 18:21:47 EEST 2008 * Generated source version: 2.0.6 * */ @WebFault(name = "contentAlreadyExistsException", targetNamespace = "http://www.cmis.org/ns/1.0") public class ContentAlreadyExistsException extends Exception { public static final long serialVersionUID = 20080729182147L; private org.alfresco.repo.cmis.ws.BasicFault 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.BasicFault contentAlreadyExistsException) { super(message); this.contentAlreadyExistsException = contentAlreadyExistsException; } public ContentAlreadyExistsException(String message, org.alfresco.repo.cmis.ws.BasicFault contentAlreadyExistsException, Throwable cause) { super(message, cause); this.contentAlreadyExistsException = contentAlreadyExistsException; } public org.alfresco.repo.cmis.ws.BasicFault getFaultInfo() { return this.contentAlreadyExistsException; } }