You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Exception: Aws::PageableResponse::LastPageError

Inherits:
RuntimeError
  • Object
show all
Defined in:
aws-sdk-core/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:



109
110
111
112
# File 'aws-sdk-core/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

Instance Attribute Details

#responseSeahorse::Client::Response (readonly)



115
116
117
# File 'aws-sdk-core/lib/aws-sdk-core/pageable_response.rb', line 115

def response
  @response
end