module.exports = function makeError(obj) { const err = new Error(obj.message); err.name = obj.name; err.stack = obj.stack; return err; };