Exception: BSV::Wallet::PoolDepletedError
- Inherits:
-
WalletError
- Object
- StandardError
- WalletError
- BSV::Wallet::PoolDepletedError
- Defined in:
- lib/bsv/wallet/errors/pool_depleted_error.rb
Overview
Raised when a UTXO pool has no available outputs for acquisition.
Instance Attribute Summary
Attributes inherited from WalletError
Instance Method Summary collapse
-
#initialize(pool_name) ⇒ PoolDepletedError
constructor
A new instance of PoolDepletedError.
Constructor Details
#initialize(pool_name) ⇒ PoolDepletedError
Returns a new instance of PoolDepletedError.
7 8 9 |
# File 'lib/bsv/wallet/errors/pool_depleted_error.rb', line 7 def initialize(pool_name) super("UTXO pool '#{pool_name}' is depleted; no outputs available for acquisition") end |