UNPKG

process-rerun

Version:

The purpose of this library is - build simple and flexible interface for parallel command execution with rerun (on fail) possibility

9 lines 280 B
class ProcessRerunError extends Error { constructor(type, message) { super(message); this.name = `${type}${this.constructor.name}`; Error.captureStackTrace(this, this.constructor); } } export { ProcessRerunError }; //# sourceMappingURL=error.js.map