Rocky_Mountain_Vending/.pnpm-store/v10/files/79/fb050f4a911244bb19f77361121f9d60167a59b3a0320c186db4a87621d3d54c1b3fe9197d344cd35aee97a0c330dcd083813c9f8df0a17c73491ae625a2b9
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
310 B
Text

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