Exception: KucoinRuby::Exceptions::ResponseError
- Defined in:
- lib/kucoin_ruby/exceptions/response_error.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
- #error_code ⇒ Object
-
#initialize(response) ⇒ ResponseError
constructor
A new instance of ResponseError.
- #to_s ⇒ Object
Constructor Details
#initialize(response) ⇒ ResponseError
Returns a new instance of ResponseError.
6 7 8 |
# File 'lib/kucoin_ruby/exceptions/response_error.rb', line 6 def initialize(response) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
4 5 6 |
# File 'lib/kucoin_ruby/exceptions/response_error.rb', line 4 def response @response end |
Instance Method Details
#error_code ⇒ Object
15 16 17 |
# File 'lib/kucoin_ruby/exceptions/response_error.rb', line 15 def error_code data[:error_code] || data['error_code'] end |
#to_s ⇒ Object
10 11 12 13 |
# File 'lib/kucoin_ruby/exceptions/response_error.rb', line 10 def to_s super + format(' (%s)', data.map { |k, v| %(#{k}: "#{v}") }.join(', ')) end |