UNPKG

redis-smq

Version:

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

10 lines 338 B
import { RedisSMQError } from 'redis-smq-common'; export class BackgroundJobCanceledError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.BackgroundJobs.Canceled', defaultMessage: 'Background job was canceled.', }; } } //# sourceMappingURL=background-job-canceled.error.js.map