redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
10 lines • 356 B
JavaScript
import { RedisSMQError } from 'redis-smq-common';
export class BackgroundJobAlreadyExistsError extends RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.BackgroundJobs.AlreadyExists',
defaultMessage: 'Background job already exists.',
};
}
}
//# sourceMappingURL=background-job-already-exists.error.js.map