* @throws IOException Signals that an I/O exception has occurred.
* @throws ServiceException the service exception
* @throws DocumentListException the document list exception
*/
public DocumentListEntry createNewSubFolder(String title, String folderResourceId) throws IOException, ServiceException, DocumentListException {
DocumentListEntry newEntry = new FolderEntry();
newEntry.setTitle(new PlainTextConstruct(title));
URL url = buildUrl(URL_DEFAULT + URL_DOCLIST_FEED + "/" + folderResourceId + URL_FOLDERS);
return service.insert(url, newEntry);
}