UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

10 lines 400 B
import { RedisSMQError } from '../../errors/index.js'; export class RedisClientNotInstalledError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.RedisClient.ClientNotInstalled', defaultMessage: 'REDIS client is not available. Please install your selected client first.', }; } } //# sourceMappingURL=redis-client-not-installed.error.js.map