UNPKG

redis-smq

Version:

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

10 lines 313 B
import { RedisSMQError } from 'redis-smq-common'; export class ExchangeNotFoundError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Exchange.NotFound', defaultMessage: 'Exchange not found.', }; } } //# sourceMappingURL=exchange-not-found.error.js.map