Exception: BSV::Wallet::InvalidSignatureError

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

Overview

Raised when a signature fails to verify.

Instance Attribute Summary

Attributes inherited from Error

#code

Instance Method Summary collapse

Constructor Details

#initialize(message = 'the provided signature is invalid') ⇒ InvalidSignatureError

Returns a new instance of InvalidSignatureError.



35
36
37
# File 'lib/bsv/wallet/errors.rb', line 35

def initialize(message = 'the provided signature is invalid')
  super(message, 4)
end