UNPKG

redis-smq

Version:

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

10 lines 348 B
import { RedisSMQError } from 'redis-smq-common'; export class QueueAlreadyExistsError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Queue.AlreadyExists', defaultMessage: 'A queue with the same parameters already exists.', }; } } //# sourceMappingURL=queue-already-exists.error.js.map