redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
14 lines • 619 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExchangeQueuePolicyMismatchError = void 0;
const redis_smq_common_1 = require("redis-smq-common");
class ExchangeQueuePolicyMismatchError extends redis_smq_common_1.RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.Exchange.QueuePolicyMismatch',
defaultMessage: `The queue's type is not compatible with the exchange's queue policy.`,
};
}
}
exports.ExchangeQueuePolicyMismatchError = ExchangeQueuePolicyMismatchError;
//# sourceMappingURL=exchange-queue-policy-mismatch.error.js.map