intern-Assignment/Sequelize-library/node_modules/yargs/build/lib/yerror.js
2025-01-31 15:20:39 +05:30

8 lines
181 B
JavaScript

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