UNPKG

redis-smq

Version:

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

10 lines 351 B
import { RedisSMQError } from 'redis-smq-common'; export class InvalidExchangeRoutingKeyError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Exchange.RoutingKeyRequired', defaultMessage: 'Please specify a routing key', }; } } //# sourceMappingURL=invalid-exchange-routing-key.error.js.map