Exception: BSV::Wallet::InsufficientFundsError
- Defined in:
- lib/bsv/wallet/errors.rb
Overview
Code 5 — wallet has insufficient funds for the requested operation.
Instance Attribute Summary
Attributes inherited from Error
Instance Method Summary collapse
-
#initialize(message = 'insufficient funds', stack: '') ⇒ InsufficientFundsError
constructor
A new instance of InsufficientFundsError.
Methods inherited from Error
Constructor Details
#initialize(message = 'insufficient funds', stack: '') ⇒ InsufficientFundsError
Returns a new instance of InsufficientFundsError.
46 47 48 |
# File 'lib/bsv/wallet/errors.rb', line 46 def initialize( = 'insufficient funds', stack: '') super(, code: 5, stack: stack) end |