redis-smq-common
Version:
Provides essential components and utilities shared across RedisSMQ packages.
10 lines • 410 B
JavaScript
import { RedisSMQError } from '../../errors/index.js';
export class CommandNotSupportedError extends RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.RedisClient.CommandNotSupported',
defaultMessage: 'Command not supported by your Redis server. Minimal required Redis server version is 6.2.0.',
};
}
}
//# sourceMappingURL=command-not-supported.error.js.map