Files
Arbitrate-FrontendH5/node_modules/yargs/build/lib/yerror.js
T
2024-01-18 10:46:33 +08:00

8 lines
181 B
JavaScript

export class YError extends Error {
constructor(msg) {
super(msg || 'yargs error');
this.name = 'YError';
Error.captureStackTrace(this, YError);
}
}