aboutsummaryrefslogtreecommitdiff
path: root/node_modules/yargs/build/lib/yerror.js
blob: 4cfef75e56ba155d6707642f5453e8d1d040dd04 (plain)
1
2
3
4
5
6
7
export class YError extends Error {
    constructor(msg) {
        super(msg || 'yargs error');
        this.name = 'YError';
        Error.captureStackTrace(this, YError);
    }
}