redis-smq-common
Version:
Provides essential components and utilities shared across RedisSMQ packages.
14 lines • 552 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AttemptsExhaustedError = void 0;
const index_js_1 = require("../../errors/index.js");
class AttemptsExhaustedError extends index_js_1.RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.FileLock.AcquireLock.AttemptsExhausted',
defaultMessage: 'Failed to acquire a file lock after multiple attempts.',
};
}
}
exports.AttemptsExhaustedError = AttemptsExhaustedError;
//# sourceMappingURL=attempts-exhausted.error.js.map