class Stripe::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
Stripe::StripeError::new
# File lib/stripe/errors.rb, line 122 def initialize(message, sig_header, http_body: nil) super(message, http_body: http_body) @sig_header = sig_header end