Exception: SearchFlip::ResponseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/search_flip.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code:, body:) ⇒ ResponseError

Returns a new instance of ResponseError.



30
31
32
33
# File 'lib/search_flip.rb', line 30

def initialize(code:, body:)
  @code = code
  @body = body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



28
29
30
# File 'lib/search_flip.rb', line 28

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



28
29
30
# File 'lib/search_flip.rb', line 28

def code
  @code
end

Instance Method Details

#to_sObject



35
36
37
# File 'lib/search_flip.rb', line 35

def to_s
  "#{self.class.name} (#{code}): #{body}"
end