UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

9 lines (7 loc) 230 B
import { AlephaError } from "alepha"; export class RetryTimeoutError extends AlephaError { constructor(duration: number) { super(`Retry operation timed out after ${duration}ms.`); this.name = "RetryTimeoutError"; } }