Exception: Graphiti::Errors::UnsupportedPageSize

Inherits:
Base
  • Object
show all
Defined in:
lib/graphiti/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(size, max) ⇒ UnsupportedPageSize

Returns a new instance of UnsupportedPageSize.



683
684
685
# File 'lib/graphiti/errors.rb', line 683

def initialize(size, max)
  @size, @max = size, max
end

Instance Method Details

#messageObject



687
688
689
# File 'lib/graphiti/errors.rb', line 687

def message
  "Requested page size #{@size} is greater than max supported size #{@max}"
end