blob: 4cfef75e56ba155d6707642f5453e8d1d040dd04 [file] [log] [blame]
export class YError extends Error {
constructor(msg) {
super(msg || 'yargs error');
this.name = 'YError';
Error.captureStackTrace(this, YError);
}
}