Rocky_Mountain_Vending/.pnpm-store/v10/files/27/bfabdee8af32ec7e3920564e9bbce444351babdd6458d86745b06599015ab0590a25594b5975513e102df630dfa879425a8ce5eb136bbd50592ab0389f805e
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

6 lines
139 B
Text

export class EndpointError extends Error {
constructor(message) {
super(message);
this.name = "EndpointError";
}
}