Exception: AssayDepot::SignatureVerificationError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/assaydepot.rb

Instance Method Summary collapse

Constructor Details

#initialize(msg = "Event not properly signed.", exception_type = "custom") ⇒ SignatureVerificationError

Returns a new instance of SignatureVerificationError.



11
12
13
14
# File 'lib/assaydepot.rb', line 11

def initialize(msg="Event not properly signed.", exception_type="custom")
  @exception_type = exception_type
  super(msg)
end