Rocky_Mountain_Vending/.pnpm-store/v10/files/2b/3a9bf904e0d2ccb297149bd58b02696c141cabf772deb643c8cb9fd7852b3a60004c760014cb39cd3476b4942040d47b1aa6261405a8bd713846071b6fb363-exec
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

18 lines
361 B
Text
Executable file

'use strict';
const internals = {};
module.exports = class AssertError extends Error {
name = 'AssertError';
constructor(message, ctor) {
super(message || 'Unknown error');
if (typeof Error.captureStackTrace === 'function') { // $lab:coverage:ignore$
Error.captureStackTrace(this, ctor);
}
}
};