Exception: Flipper::Adapters::Http::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Flipper::Adapters::Http::Error
- Defined in:
- lib/flipper/adapters/http/error.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(response) ⇒ Error
Returns a new instance of Error.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/flipper/adapters/http/error.rb', line 9 def initialize(response) @response = response = "Failed with status: #{response.code}" begin data = Typecast.from_json(response.body) if = data["message"] << "\n\n#{data["message"]}" end if more_info = data["more_info"] << "\n#{data["more_info"]}" end rescue => exception # welp we tried end super() end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
7 8 9 |
# File 'lib/flipper/adapters/http/error.rb', line 7 def response @response end |