Class: Peatio::Bitcoincash::Client::ResponseError
- Defined in:
- lib/peatio/bitcoincash/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.
13 14 15 16 |
# File 'lib/peatio/bitcoincash/client.rb', line 13 def initialize(code, msg) @code = code @msg = msg end |
Instance Method Details
#message ⇒ Object
18 19 20 |
# File 'lib/peatio/bitcoincash/client.rb', line 18 def "#{@msg} (#{@code})" end |