if (resultSet.next()) {
fillUpUser(resultSet, prevUser);
}
} catch (ConnectionPoolException e) {
log.error("Error during getting connection from the pool", e);
throw new DaoException(e);
} catch (SQLException e) {
log.error("Error during searching all address entities", e);
throw new DaoException(e);
}
return prevUser;
}