process-rerun
Version:
The purpose of this library is - build simple and flexible interface for parallel command execution with rerun (on fail) possibility
12 lines • 410 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProcessRerunError = void 0;
class ProcessRerunError extends Error {
constructor(type, message) {
super(message);
this.name = `${type}${this.constructor.name}`;
Error.captureStackTrace(this, this.constructor);
}
}
exports.ProcessRerunError = ProcessRerunError;
//# sourceMappingURL=error.js.map