Example #1
0
 function getUserList()
 {
     try {
         $personDAO = new PersonDAO();
         $userList = $personDAO->getAllUsers();
         return $userList;
     } catch (PDOException $pdoe) {
         throw $pdoe;
     } catch (UserNotAuthenticatedExceptionDTO $authExp) {
         throw $authExp;
     } catch (Exception $e) {
         throw $e;
     }
 }