redis-smq-common
Version:
RedisSMQ Common Library provides many components that are mainly used by RedisSMQ and RedisSMQ Monitor.
11 lines • 479 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LockMethodNotAllowedError = void 0;
const lock_error_js_1 = require("./lock.error.js");
class LockMethodNotAllowedError extends lock_error_js_1.LockError {
constructor(message = `This method can not be used when autoExtend is enabled`) {
super(message);
}
}
exports.LockMethodNotAllowedError = LockMethodNotAllowedError;
//# sourceMappingURL=lock-method-not-allowed.error.js.map