public static void deletePhone(long phoneId) throws RemoteException {
    try {
      PhoneServiceUtil.deletePhone(phoneId);
    } catch (Exception e) {
      _log.error(e, e);

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