Fetches the next page for a given response. @param response a response object previously received for which includes an array of data @return a new response of data @throws ResponseException if the page could not be found
(Response response)
| 280 | * @throws ResponseException if the page could not be found |
| 281 | */ |
| 282 | public Response next(Response response) throws ResponseException { |
| 283 | return page(Constants.NEXT, response); |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * Fetches the next page for a given response. |