Rocky_Mountain_Vending/.pnpm-store/v10/files/c2/e8a18e1513c52875ed40fe8b4379a64110ffc66860849a01b3e7ccc140872024f80565ab2e4fbc2eb7a57b8b0802a57e678f035ee71c0619c4632c922ac108
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

11 lines
222 B
Text

export class AddressError extends Error {
parseMessage?: string;
constructor(message: string, parseMessage?: string) {
super(message);
this.name = 'AddressError';
this.parseMessage = parseMessage;
}
}