UNPKG

redis-smq

Version:

A simple high-performance Redis message queue for Node.js.

11 lines 458 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NamespaceNotFoundError = void 0; const redis_smq_common_1 = require("redis-smq-common"); class NamespaceNotFoundError extends redis_smq_common_1.errors.RedisSMQError { constructor(namespace) { super(`Namespace (${namespace}) does not exist`); } } exports.NamespaceNotFoundError = NamespaceNotFoundError; //# sourceMappingURL=namespace-not-found.error.js.map