class Bitcoin::OTC::Error

Error class for ‘#bitcoin-otc` operations.

Attributes

response[R]

@return [Net::HTTP::Response]

Public Class Methods

new(message, response = nil) click to toggle source

@param [String] message @param [Net::HTTP::Response] response

Calls superclass method
# File lib/bitcoin/otc/error.rb, line 8
def initialize(message, response = nil)
  super(message)
  @response = response
end