blob: 97294bb8776ea4cf3a52f968f97ceb4d9823231b [file] [log] [blame]
/* @flow */
"use strict";
/**
* Create configurationError from text and set CLI exit code
*/
module.exports = function(text /*: string */) /* Object */ {
const err /*: Object*/ = new Error(text);
err.code = 78;
return err;
};