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