Rocky_Mountain_Vending/.pnpm-store/v10/files/2c/89059cd3f8cffefb91ce61c38e5bdefe19356dba6e82d6658ab6fc183f8de8d7144b7bfdf75e73e0b169826794ecead792d1361192d30b7bcab8d8c5c09a7e
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
No EOL
311 B
Text

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