class Graphiti::Errors::UnsupportedPageSize
Public Class Methods
Source
# File lib/graphiti/errors.rb, line 727 def initialize(size, max) @size, @max = size, max end
Public Instance Methods
Source
# File lib/graphiti/errors.rb, line 731 def message "Requested page size #{@size} is greater than max supported size #{@max}" end