class Graphiti::Errors::AdapterNotImplemented

Public Class Methods

new(adapter, attribute, method) click to toggle source
# File lib/graphiti/errors.rb, line 31
def initialize(adapter, attribute, method)
  @adapter = adapter
  @attribute = attribute
  @method = method
end

Public Instance Methods

message() click to toggle source
# File lib/graphiti/errors.rb, line 37
      def message
        <<~MSG
          The adapter #{@adapter.class} does not implement method '#{@method}', which was requested for attribute '#{@attribute}'. Add this method to your adapter to support this filter operator.
        MSG
      end