UNPKG

redis-smq

Version:

A high-performance, reliable, and scalable message queue for Node.js.

10 lines 313 B
import { RedisSMQError } from 'redis-smq-common'; export class InvalidRedisKeyError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.RedisKeys.InvalidKey', defaultMessage: 'Invalid Redis key.', }; } } //# sourceMappingURL=invalid-redis-key.error.js.map