UNPKG

redis-smq

Version:

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

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