class Graphiti::Errors::UnsupportedPageSize

Public Class Methods

new(size, max) click to toggle source
# File lib/graphiti/errors.rb, line 727
def initialize(size, max)
  @size, @max = size, max
end

Public Instance Methods

message() click to toggle source
# File lib/graphiti/errors.rb, line 731
def message
  "Requested page size #{@size} is greater than max supported size #{@max}"
end