UNPKG

redis-smq

Version:

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

10 lines 335 B
import { RedisSMQError } from 'redis-smq-common'; export class ConsumerGroupNotFoundError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.ConsumerGroup.NotFound', defaultMessage: 'Consumer group not found.', }; } } //# sourceMappingURL=consumer-group-not-found.error.js.map