Exception: Vortex::WebhookSignatureError
- Inherits:
-
VortexError
- Object
- StandardError
- VortexError
- Vortex::WebhookSignatureError
- Defined in:
- lib/vortex/webhooks.rb
Overview
Error raised when webhook signature verification fails
Instance Attribute Summary
Attributes inherited from VortexError
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ WebhookSignatureError
constructor
A new instance of WebhookSignatureError.
Constructor Details
#initialize(message = nil) ⇒ WebhookSignatureError
Returns a new instance of WebhookSignatureError.
9 10 11 |
# File 'lib/vortex/webhooks.rb', line 9 def initialize( = nil) super( || 'Webhook signature verification failed. Ensure you are using the raw request body and the correct signing secret.') end |