frontend/.pnpm-store/v3/files/43/2e5ab71479b9f9a8cae83a1011a847a3cbfb3f7adfcafd9c4bc3910806153b78e0eb975f61669e3544544ed1b2564fbe28ac2641d56840b48914c893a8b654

8 lines
181 B
Plaintext

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