redis-smq-common
Version:
Provides essential components and utilities shared across RedisSMQ packages.
14 lines • 579 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WatchedKeysChangedError = void 0;
const index_js_1 = require("../../errors/index.js");
class WatchedKeysChangedError extends index_js_1.RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.RedisClient.WatchedKeysChanged',
defaultMessage: 'Redis transaction failed. One or more watched keys were modified by another client.',
};
}
}
exports.WatchedKeysChangedError = WatchedKeysChangedError;
//# sourceMappingURL=watched-keys-changed.error.js.map