class Helio::SignatureVerificationError
SignatureVerificationError
is raised when the signature verification for a webhook fails
Attributes
sig_header[RW]
Public Class Methods
new(message, sig_header, http_body: nil)
click to toggle source
Calls superclass method
Helio::HelioError::new
# File lib/helio/errors.rb, line 105 def initialize(message, sig_header, http_body: nil) super(message, http_body: http_body) @sig_header = sig_header end