Exception: Graphiti::Errors::InvalidType

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

Instance Method Summary collapse

Constructor Details

#initialize(key, value) ⇒ InvalidType

Returns a new instance of InvalidType.



408
409
410
411
# File 'lib/graphiti/errors.rb', line 408

def initialize(key, value)
  @key = key
  @value = value
end

Instance Method Details

#messageObject



413
414
415
# File 'lib/graphiti/errors.rb', line 413

def message
  "Type must be a Hash with keys #{Types::REQUIRED_KEYS.inspect}"
end