UNPKG

agentvasya

Version:

Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more

10 lines (9 loc) 234 B
export class YError extends Error { constructor(msg) { super(msg || 'yargs error'); this.name = 'YError'; if (Error.captureStackTrace) { Error.captureStackTrace(this, YError); } } }