redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
14 lines • 576 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BackgroundJobAlreadyExistsError = void 0;
const redis_smq_common_1 = require("redis-smq-common");
class BackgroundJobAlreadyExistsError extends redis_smq_common_1.RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.BackgroundJobs.AlreadyExists',
defaultMessage: 'Background job already exists.',
};
}
}
exports.BackgroundJobAlreadyExistsError = BackgroundJobAlreadyExistsError;
//# sourceMappingURL=background-job-already-exists.error.js.map