unrecoverable-error.d.ts 292 B

1234567891011
  1. export declare const UNRECOVERABLE_ERROR = "bullmq:unrecoverable";
  2. /**
  3. * UnrecoverableError
  4. *
  5. * Error to move a job to failed even if the attemptsMade
  6. * are lower than the expected limit.
  7. *
  8. */
  9. export declare class UnrecoverableError extends Error {
  10. constructor(message?: string);
  11. }