Rocky_Mountain_Vending/.pnpm-store/v10/files/8c/1d77978fb99453e85383c18dfc12f5cc997e2a39fbb7552b6532680e0a4a1c493481f2ea5eb3e336dbb8a437abc149d229c54737a23113f59cadf34ad748d9
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
324 B
Text

import { createErrorClass } from './createErrorClass';
export const ArgumentOutOfRangeError = createErrorClass((_super) => function ArgumentOutOfRangeErrorImpl() {
_super(this);
this.name = 'ArgumentOutOfRangeError';
this.message = 'argument out of range';
});
//# sourceMappingURL=ArgumentOutOfRangeError.js.map