Transient

open class Transient(message: String, cause: Throwable? = null) : ActionException, Retryable

Transient failure that can be retried.

Use for temporary failures like:

  • Network timeouts

  • Rate limiting (429 errors)

  • Temporary resource unavailability

  • Connection failures

  • Database deadlocks

Parameters

message

Human-readable error description

cause

Optional underlying exception

Constructors

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

Properties

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

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard