redis-smq-common
Version:
RedisSMQ Common Library provides many components that are mainly used by RedisSMQ and RedisSMQ Monitor.
11 lines • 532 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileLockAttemptsExhaustedError = void 0;
const file_lock_error_js_1 = require("./file-lock.error.js");
class FileLockAttemptsExhaustedError extends file_lock_error_js_1.FileLockError {
constructor(lockFile, retries) {
super(`Failed to acquire lock on ${lockFile} after ${retries} attempts`);
}
}
exports.FileLockAttemptsExhaustedError = FileLockAttemptsExhaustedError;
//# sourceMappingURL=file-lock-attempts-exhausted.error.js.map