API reference › @evolu/common › Task › RetryError
Defined in: packages/common/src/Task.ts:1940
Error returned when all retry attempts are exhausted.
Extends
Typed<"RetryError">
Properties
attempts
readonly attempts: number & Brand<"Int"> & Brand<"NonNegative"> & Brand<"Positive">;
Defined in: packages/common/src/Task.ts:1945
Total attempts made (initial + retries).
cause
readonly cause: E;
Defined in: packages/common/src/Task.ts:1942
The error from the final attempt.
type
readonly type: "RetryError";
Defined in: packages/common/src/Type.ts:3492