Rocky_Mountain_Vending/.pnpm-store/v10/files/e2/aeff0c27d7d2f2b0740e141df9c938e92ed18bdf695f8c6b0444a151734f3a4b00893ddbb0c2d09094795f733afc9e252b289ec78ceec63c0209db811f8baa
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 SequenceError = createErrorClass((_super) => function SequenceErrorImpl(message) {
_super(this);
this.name = 'SequenceError';
this.message = message;
});
//# sourceMappingURL=SequenceError.js.map