public void delete(BTBookingDto arg0)
      throws BTBookingException, StaleDataException, BTContainerException, BTSiteException {
    BTBookingFacade facade = createFacade();

    try {
      facade.delete(arg0);
    } catch (RemoteException e) {
      LogWithUserInfo.error(log, "delete", e);
      throw new InfrastructureException(e);
    } finally {
      removeFacadeQuietly(facade);
    }
  }