Exception: Graphiti::Errors::UnsupportedSort

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

Instance Method Summary collapse

Constructor Details

#initialize(resource, attribute, allowlist, direction) ⇒ UnsupportedSort

Returns a new instance of UnsupportedSort.



109
110
111
112
113
114
# File 'lib/graphiti/errors.rb', line 109

def initialize(resource, attribute, allowlist, direction)
  @resource = resource
  @attribute = attribute
  @allowlist = allowlist
  @direction = direction
end

Instance Method Details

#messageObject



116
117
118
119
120
# File 'lib/graphiti/errors.rb', line 116

def message
  <<-MSG
    #{@resource.class.name}: tried to sort on attribute #{@attribute.inspect}, but passed #{@direction.inspect} when only #{@allowlist.inspect} is supported.
  MSG
end