LithicRetryableException

class LithicRetryableException(message: String? = null, cause: Throwable? = null) : LithicException

Exception that indicates a transient error that can be retried.

When this exception is thrown during an HTTP request, the SDK will automatically retry the request up to the maximum number of retries.

Parameters

message

A descriptive error message

cause

The underlying cause of this exception, if any

Constructors

Link copied to clipboard
constructor(message: String? = null, cause: Throwable? = null)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?