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:55 EEST 2008 * Generated source version: 2.1.2 * */ @WebFault(name = "notInFolderException", targetNamespace = "http://www.cmis.org/2008/05") public class NotInFolderException extends Exception { public static final long serialVersionUID = 20080905134455L; private org.alfresco.repo.cmis.ws.NotInFolderExceptionType notInFolderException; public NotInFolderException() { super(); } public NotInFolderException(String message) { super(message); } public NotInFolderException(String message, Throwable cause) { super(message, cause); } public NotInFolderException(String message, org.alfresco.repo.cmis.ws.NotInFolderExceptionType notInFolderException) { super(message); this.notInFolderException = notInFolderException; } public NotInFolderException(String message, org.alfresco.repo.cmis.ws.NotInFolderExceptionType notInFolderException, Throwable cause) { super(message, cause); this.notInFolderException = notInFolderException; } public org.alfresco.repo.cmis.ws.NotInFolderExceptionType getFaultInfo() { return this.notInFolderException; } }