Fetches the first 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)
| 300 | * @throws ResponseException if the page could not be found |
| 301 | */ |
| 302 | public Response first(Response response) throws ResponseException { |
| 303 | return page(Constants.FIRST, response); |
| 304 | } |
| 305 | |
| 306 | /** |
| 307 | * Fetches the first page for a given response. |