Exception: ComplyanceSDK::Retry::RetryExhaustedError
- Inherits:
-
Exceptions::SDKException
- Object
- StandardError
- Exceptions::SDKException
- ComplyanceSDK::Retry::RetryExhaustedError
- Defined in:
- lib/complyance_sdk/retry/retry_strategy.rb
Overview
Exception raised when all retry attempts are exhausted
Instance Attribute Summary
Attributes inherited from Exceptions::SDKException
Instance Method Summary collapse
-
#initialize(message = "All retry attempts exhausted", **kwargs) ⇒ RetryExhaustedError
constructor
A new instance of RetryExhaustedError.
Methods inherited from Exceptions::SDKException
Constructor Details
#initialize(message = "All retry attempts exhausted", **kwargs) ⇒ RetryExhaustedError
Returns a new instance of RetryExhaustedError.
220 221 222 |
# File 'lib/complyance_sdk/retry/retry_strategy.rb', line 220 def initialize( = "All retry attempts exhausted", **kwargs) super(, context: { code: :retry_exhausted, **kwargs }) end |