Class: Peatio::Dash::Client::ResponseError
- Defined in:
- lib/peatio/dash/client.rb
Instance Method Summary collapse
-
#initialize(code, msg) ⇒ ResponseError
constructor
A new instance of ResponseError.
- #message ⇒ Object
Constructor Details
#initialize(code, msg) ⇒ ResponseError
Returns a new instance of ResponseError.
14 15 16 17 |
# File 'lib/peatio/dash/client.rb', line 14 def initialize(code, msg) @code = code @msg = msg end |
Instance Method Details
#message ⇒ Object
19 20 21 |
# File 'lib/peatio/dash/client.rb', line 19 def "#{@msg} (#{@code})" end |