Rocky_Mountain_Vending/.pnpm-store/v10/files/67/de083a5a9fffa5b467b67b8c8330f8fd4685d3bfb79a0d44f9004b46088874ac43fba4a64c523f36fc38f40d56e63a24087a45124e50229a9626cb3f5aa364
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

9 lines
234 B
Text

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