mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 02:00:12 +08:00
The [release notes](https://github.com/avajs/ava/releases/tag/v4.3.3) mention compatibility with Node 18.8.
10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
export class YError extends Error {
|
|
constructor(msg) {
|
|
super(msg || 'yargs error');
|
|
this.name = 'YError';
|
|
if (Error.captureStackTrace) {
|
|
Error.captureStackTrace(this, YError);
|
|
}
|
|
}
|
|
}
|