install-nix-action/node_modules/yargs/lib/yerror.js
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +01: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