diff options
Diffstat (limited to 'node_modules/yargs/build/lib/yerror.js')
| -rw-r--r-- | node_modules/yargs/build/lib/yerror.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/node_modules/yargs/build/lib/yerror.js b/node_modules/yargs/build/lib/yerror.js new file mode 100644 index 0000000..7a36684 --- /dev/null +++ b/node_modules/yargs/build/lib/yerror.js @@ -0,0 +1,9 @@ +export class YError extends Error { + constructor(msg) { + super(msg || 'yargs error'); + this.name = 'YError'; + if (Error.captureStackTrace) { + Error.captureStackTrace(this, YError); + } + } +} |