UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

14 lines 593 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CommandNotSupportedError = void 0; const index_js_1 = require("../../errors/index.js"); class CommandNotSupportedError extends index_js_1.RedisSMQError { getProps() { return { code: 'RedisSMQ.RedisClient.CommandNotSupported', defaultMessage: 'Command not supported by your Redis server. Minimal required Redis server version is 6.2.0.', }; } } exports.CommandNotSupportedError = CommandNotSupportedError; //# sourceMappingURL=command-not-supported.error.js.map