Exception: Bearcat::GraphqlError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/bearcat/client/graph_ql.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, response: nil) ⇒ GraphqlError

Returns a new instance of GraphqlError.



5
6
7
8
# File 'lib/bearcat/client/graph_ql.rb', line 5

def initialize(message, response: nil)
  super(message)
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



3
4
5
# File 'lib/bearcat/client/graph_ql.rb', line 3

def response
  @response
end