UNPKG

redis-smq

Version:

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

10 lines 373 B
import { RedisSMQError } from 'redis-smq-common'; export class QueueHasBoundExchangesError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Queue.HasBoundExchanges', defaultMessage: 'Queue has one or more bound exchanges and cannot be deleted.', }; } } //# sourceMappingURL=queue-has-bound-exchanges.error.js.map