setup-node/node_modules/yargs/lib/yerror.js
Danny McCormick c3f0a8be66 Use husky
2019-06-05 11:34:47 -04:00

12 lines
254 B
JavaScript

'use strict'
function YError (msg) {
this.name = 'YError'
this.message = msg || 'yargs error'
Error.captureStackTrace(this, YError)
}
YError.prototype = Object.create(Error.prototype)
YError.prototype.constructor = YError
module.exports = YError