Exception: Faraday::Error::ClientError
- Inherits:
-
StandardError
- Object
- StandardError
- Faraday::Error::ClientError
- Defined in:
- lib/faraday/error.rb
Direct Known Subclasses
Instance Attribute Summary (collapse)
-
- (Object) response
readonly
Returns the value of attribute response.
Instance Method Summary (collapse)
- - (Object) backtrace
-
- (ClientError) initialize(ex)
constructor
A new instance of ClientError.
- - (Object) inspect
Constructor Details
- (ClientError) initialize(ex)
A new instance of ClientError
6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/faraday/error.rb', line 6 def initialize(ex) @wrapped_exception = nil @response = nil if ex.respond_to?(:backtrace) super(ex.) @wrapped_exception = ex elsif ex.respond_to?(:each_key) super("the server responded with status #{ex[:status]}") @response = ex else super(ex.to_s) end end |
Instance Attribute Details
- (Object) response (readonly)
Returns the value of attribute response
4 5 6 |
# File 'lib/faraday/error.rb', line 4 def response @response end |