1'use strict' 2function YError (msg) { 3 this.name = 'YError' 4 this.message = msg || 'yargs error' 5 Error.captureStackTrace(this, YError) 6} 7 8YError.prototype = Object.create(Error.prototype) 9YError.prototype.constructor = YError 10 11module.exports = YError 12