UNPKG

alepha

Version:

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

9 lines (7 loc) 196 B
import { AlephaError } from "alepha"; export class RetryCancelError extends AlephaError { constructor() { super("Retry operation was cancelled."); this.name = "RetryCancelError"; } }