ENUM
IdsvrErrorHandling
Contents
- Cases
retryable(condition:)
newHaapiFlow
unrecoverable(action:)
public enum IdsvrErrorHandling
Defines the possible error handling strategies to implement for an IdsvrError.
Cases
retryable(condition:)
case retryable(condition: RetryCondition)
The operation can be retried.
- Parameter condition: The condition that has to be met to be able to perform a new operation retry.
newHaapiFlow
case newHaapiFlow
The operation cannot be completed with the current state. A new Authentication flow is required.
unrecoverable(action:)
case unrecoverable(action: UnrecoverableAction)
The operation cannot be completed and cannot be recovered. Modification of the configuration or the invocation called on the API is required.
- Parameter action: The suggested action to perform in order to try and work around the error.