UNPKG

redis-smq

Version:

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

10 lines 350 B
import { RedisSMQError } from 'redis-smq-common'; export class NoMatchingQueuesError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Producer.NoMatchingQueues', defaultMessage: 'No queues were matched for the message exchange.', }; } } //# sourceMappingURL=no-matching-queues.error.js.map