UNPKG

redis-smq

Version:

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

10 lines 357 B
import { RedisSMQError } from 'redis-smq-common'; export class InvalidExchangeParametersError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Exchange.InvalidExchangeParameters', defaultMessage: 'Invalid exchange parameters.', }; } } //# sourceMappingURL=invalid-exchange-parameters.error.js.map