Exception: Coinbase::AddressCannotSignError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/coinbase/errors.rb

Overview

An error raised when an address attempts to sign a transaction without a private key.

Instance Method Summary collapse

Constructor Details

#initialize(msg = 'Address cannot sign transaction without private key loaded') ⇒ AddressCannotSignError

Returns a new instance of AddressCannotSignError.



89
90
91
# File 'lib/coinbase/errors.rb', line 89

def initialize(msg = 'Address cannot sign transaction without private key loaded')
  super(msg)
end