UNPKG

redis-smq

Version:

A high-performance, reliable, and scalable message queue for Node.js.

10 lines 339 B
import { RedisSMQError } from 'redis-smq-common'; export class BackgroundJobNotFoundError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.BackgroundJobs.JobNotFound', defaultMessage: 'Background job not found.', }; } } //# sourceMappingURL=background-job-not-found.error.js.map