Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/77b1bbbd3d5a3fa3ebad70f7cf97a2217e0a063957da8674e660518bd46b17d3e2dc35e1b7670c33939c103863e2fdbd7a733eb427e5ca8b27eacc926b1995
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

7 lines
No EOL
275 B
Text

import { createErrorClass } from './createErrorClass';
export const NotFoundError = createErrorClass((_super) => function NotFoundErrorImpl(message) {
_super(this);
this.name = 'NotFoundError';
this.message = message;
});
//# sourceMappingURL=NotFoundError.js.map