UNPKG

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