redis-smq-common
Version:
Provides essential components and utilities shared across RedisSMQ packages.
10 lines • 383 B
JavaScript
import { RedisSMQError } from '../../errors/index.js';
export class InstanceLockError extends RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.RedisClient.InstanceLock.Failed',
defaultMessage: 'Failed to acquire instance lock. Another operation may be running concurrently.',
};
}
}
//# sourceMappingURL=instance-lock.error.js.map