Skip to main content
Module

x/yargs/lib/yerror.ts

yargs the modern, pirate-themed successor to optimist.
Go to Latest
File
export class YError extends Error { name = 'YError'; constructor(msg?: string | null) { super(msg || 'yargs error'); Error.captureStackTrace(this, YError); }}