Exception: Aws::PageableResponse::LastPageError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/aws-sdk-core/pageable_response.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ LastPageError

Returns a new instance of LastPageError.

Parameters:



112
113
114
115
# File 'lib/aws-sdk-core/pageable_response.rb', line 112

def initialize(response)
  @response = response
  super("unable to fetch next page, end of results reached")
end

Instance Attribute Details

#responseSeahorse::Client::Response (readonly)



118
119
120
# File 'lib/aws-sdk-core/pageable_response.rb', line 118

def response
  @response
end