UNPKG

375 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.ExitError = void 0;
4const cli_1 = require("./cli");
5class ExitError extends cli_1.CLIError {
6 constructor(exitCode = 0) {
7 super(`EEXIT: ${exitCode}`, { exit: exitCode });
8 this.code = 'EEXIT';
9 }
10 render() {
11 return '';
12 }
13}
14exports.ExitError = ExitError;