UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

10 lines 399 B
import { RedisSMQError } from '../../errors/index.js'; export class WatchedKeysChangedError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.RedisClient.WatchedKeysChanged', defaultMessage: 'Redis transaction failed. One or more watched keys were modified by another client.', }; } } //# sourceMappingURL=watched-keys-changed.error.js.map