UNPKG

redis-smq-common

Version:

RedisSMQ Common Library provides many components that are mainly used by RedisSMQ and RedisSMQ Monitor.

7 lines 284 B
import { RedisClientError } from './redis-client.error.js'; export class WatchedKeysChangedError extends RedisClientError { constructor(msg = 'One (or more) of the watched keys has been changed') { super(msg); } } //# sourceMappingURL=watched-keys-changed.error.js.map