IListUsers implementation
| 98 | |
| 99 | // IListUsers implementation |
| 100 | void list(CheckStatusWrapper* status, IUser* user) |
| 101 | { |
| 102 | try |
| 103 | { |
| 104 | userManagement->list(user, pos); |
| 105 | } |
| 106 | catch (const Exception& ex) |
| 107 | { |
| 108 | ex.stuffException(status); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | private: |
| 113 | UserManagement* userManagement; |
nothing calls this directly
no test coverage detected