Fetches the previous 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)
| 260 | * @throws ResponseException if the page could not be found |
| 261 | */ |
| 262 | public Response previous(Response response) throws ResponseException { |
| 263 | return page(Constants.PREVIOUS, response); |
| 264 | } |
| 265 | |
| 266 | /** |
| 267 | * Fetches the previous page for a given response. |