public static void deleteFileEntryByTitle(
      long repositoryId, long folderId, java.lang.String title) throws RemoteException {
    try {
      DLAppServiceUtil.deleteFileEntryByTitle(repositoryId, folderId, title);
    } catch (Exception e) {
      _log.error(e, e);

      throw new RemoteException(e.getMessage());
    }
  }