UNPKG

redis-smq

Version:

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

10 lines 361 B
import { RedisSMQError } from 'redis-smq-common'; export class ExchangeAlreadyExistsError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Exchange.AlreadyExists', defaultMessage: 'An exchange with the same parameters already exists.', }; } } //# sourceMappingURL=exchange-already-exists.error.js.map