UNPKG

redis-smq-common

Version:

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

7 lines 311 B
import { FileLockError } from './file-lock.error.js'; export class FileLockAttemptsExhaustedError extends FileLockError { constructor(lockFile, retries) { super(`Failed to acquire lock on ${lockFile} after ${retries} attempts`); } } //# sourceMappingURL=file-lock-attempts-exhausted.error.js.map