Exception: Coinbase::AddressCannotSignError
- Inherits:
-
StandardError
- Object
- StandardError
- Coinbase::AddressCannotSignError
- 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
-
#initialize(msg = 'Address cannot sign transaction without private key loaded') ⇒ AddressCannotSignError
constructor
A new instance of AddressCannotSignError.
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 |