Exception: Graphiti::Errors::UnsupportedPageSize
- Defined in:
- lib/graphiti/errors.rb
Instance Method Summary collapse
-
#initialize(size, max) ⇒ UnsupportedPageSize
constructor
A new instance of UnsupportedPageSize.
- #message ⇒ Object
Constructor Details
#initialize(size, max) ⇒ UnsupportedPageSize
Returns a new instance of UnsupportedPageSize.
688 689 690 |
# File 'lib/graphiti/errors.rb', line 688 def initialize(size, max) @size, @max = size, max end |
Instance Method Details
#message ⇒ Object
692 693 694 |
# File 'lib/graphiti/errors.rb', line 692 def "Requested page size #{@size} is greater than max supported size #{@max}" end |