128129130131132133134135136137138
public void deleteUser(String realm, String user) throws Exception { try { RealmMgmt rlm = new RealmMgmt(); rlm.deleteUser(realm, user); } catch (Exception e) { throw ExceptionHandler.getException(e, this); }