| 12345678910111213141516 |
- export const DELAYED_ERROR = 'bullmq:movedToDelayed';
- /**
- * DelayedError
- *
- * Error to be thrown when job is moved to delayed state
- * from job in active state.
- *
- */
- export class DelayedError extends Error {
- constructor(message = DELAYED_ERROR) {
- super(message);
- this.name = this.constructor.name;
- Object.setPrototypeOf(this, new.target.prototype);
- }
- }
- //# sourceMappingURL=delayed-error.js.map
|