redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
10 lines • 396 B
JavaScript
import { RedisSMQError } from 'redis-smq-common';
export class ExchangeQueuePolicyMismatchError extends RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.Exchange.QueuePolicyMismatch',
defaultMessage: `The queue's type is not compatible with the exchange's queue policy.`,
};
}
}
//# sourceMappingURL=exchange-queue-policy-mismatch.error.js.map