UNPKG

redis-smq

Version:

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

10 lines 325 B
import { RedisSMQError } from 'redis-smq-common'; export class QueueAlreadyBound extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Queue.AlreadyBound', defaultMessage: 'Queue is already bound to the exchange.', }; } } //# sourceMappingURL=queue-already-bound.js.map