Exception: BSV::Wallet::ReviewActionsError

Inherits:
Error
  • Object
show all
Defined in:
lib/bsv/wallet/errors.rb

Overview

Code 7 — actions require review before they can be processed.

Instance Attribute Summary

Attributes inherited from Error

#code, #wallet_stack

Instance Method Summary collapse

Methods inherited from Error

#to_wire

Constructor Details

#initialize(message = 'actions require review', stack: '') ⇒ ReviewActionsError

Returns a new instance of ReviewActionsError.



68
69
70
# File 'lib/bsv/wallet/errors.rb', line 68

def initialize(message = 'actions require review', stack: '')
  super(message, code: 7, stack: stack)
end