📄 yerror.js
/home/palash/git/site/node_modules/yargs/build/lib/yerror.js
Language: js • Lines: 7
export class YError extends Error {
    constructor(msg) {
        super(msg || 'yargs error');
        this.name = 'YError';
        Error.captureStackTrace(this, YError);
    }
}