redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
14 lines • 581 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExchangeHasBoundQueuesError = void 0;
const redis_smq_common_1 = require("redis-smq-common");
class ExchangeHasBoundQueuesError extends redis_smq_common_1.RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.Exchange.HasBoundQueues',
defaultMessage: 'Exchange has one or more bound queues and cannot be deleted.',
};
}
}
exports.ExchangeHasBoundQueuesError = ExchangeHasBoundQueuesError;
//# sourceMappingURL=exchange-has-bound-queues.error.js.map