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