} else if (CmisObjectNotFoundException.EXCEPTION_NAME.equalsIgnoreCase((String) jsonError)) {
return new CmisObjectNotFoundException(message, errorContent, t);
} else if (CmisPermissionDeniedException.EXCEPTION_NAME.equalsIgnoreCase((String) jsonError)) {
return new CmisPermissionDeniedException(message, errorContent, t);
} else if (CmisStorageException.EXCEPTION_NAME.equalsIgnoreCase((String) jsonError)) {
return new CmisStorageException(message, errorContent, t);
} else if (CmisStreamNotSupportedException.EXCEPTION_NAME.equalsIgnoreCase((String) jsonError)) {
return new CmisStreamNotSupportedException(message, errorContent, t);
} else if (CmisUpdateConflictException.EXCEPTION_NAME.equalsIgnoreCase((String) jsonError)) {
return new CmisUpdateConflictException(message, errorContent, t);
} else if (CmisVersioningException.EXCEPTION_NAME.equalsIgnoreCase((String) jsonError)) {