blob: c65b083a5b787a555c5479824230baae9a2bf060 [file] [log] [blame]
'use strict';
/**
* Create configurationError from text and set CLI exit code
* @param {string} text
* @returns {Object}
*/
module.exports = function (text) /* Object */ {
/** @type {Error & {code?: number}} */
const err = new Error(text);
err.code = 78;
return err;
};