UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

10 lines 403 B
import { RedisSMQError } from '../../errors/index.js'; export class RedisServerBinaryNotFoundError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.RedisServer.BinaryNotFound', defaultMessage: 'A Redis server binary could not be found. Please set up Redis server first.', }; } } //# sourceMappingURL=redis-server-binary-not-found.error.js.map