redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
10 lines • 373 B
JavaScript
import { RedisSMQError } from 'redis-smq-common';
export class ExchangeHasBoundQueuesError extends RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.Exchange.HasBoundQueues',
defaultMessage: 'Exchange has one or more bound queues and cannot be deleted.',
};
}
}
//# sourceMappingURL=exchange-has-bound-queues.error.js.map