Rocky_Mountain_Vending/.pnpm-store/v10/files/c9/bfd3dd03d1761928b17a4e4c9679502208001e2cce84f28cd7e501c725bbd353b9092e3a435c116864247bd1b33b90bb098621dfcb838afad74c121a729bd7
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
274 B
Text

import { createErrorClass } from './createErrorClass';
export const EmptyError = createErrorClass((_super) => function EmptyErrorImpl() {
_super(this);
this.name = 'EmptyError';
this.message = 'no elements in sequence';
});
//# sourceMappingURL=EmptyError.js.map