redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
10 lines • 373 B
JavaScript
import { RedisSMQError } from 'redis-smq-common';
export class BackgroundJobWorkerNotFoundError extends RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.BackgroundJobs.WorkerNotFound',
defaultMessage: 'Background job is not linked to any worker.',
};
}
}
//# sourceMappingURL=background-job-worker-not-found.error.js.map