redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
14 lines • 510 B
JavaScript
;
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.RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.Namespace.NotFound',
defaultMessage: 'Namespace not found.',
};
}
}
exports.NamespaceNotFoundError = NamespaceNotFoundError;
//# sourceMappingURL=namespace-not-found.error.js.map