UNPKG

redis-smq

Version:

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

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