class Aws::PageableResponse::LastPageError

Raised when calling {PageableResponse#next_page} on a pager that is on the last page of results. You can call {PageableResponse#last_page?} or {PageableResponse#next_page?} to know if there are more pages.

Attributes

response[R]

@return [Seahorse::Client::Response]

Public Class Methods

new(response) click to toggle source

@param [Seahorse::Client::Response] response

Calls superclass method
# File lib/aws-sdk-core/pageable_response.rb, line 109
def initialize(response)
  @response = response
  super("unable to fetch next page, end of results reached")
end