Rocky_Mountain_Vending/.pnpm-store/v10/files/6a/517b84d3a283739b9eaee779818538e0ef0f5b551d9133f1860e7f8807d59e9678c880c0460728e888f37141e840726f5a06ddbdee979947f737154a62a4e9
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

23 lines
465 B
Text

'use strict';
var util = require('util');
/**
* An error thrown by the parser on unexpected input.
*
* @constructor
* @param {string} message The error message.
* @param {string} input The unexpected input.
* @public
*/
function ParseError(message, input) {
Error.captureStackTrace(this, ParseError);
this.name = this.constructor.name;
this.message = message;
this.input = input;
}
util.inherits(ParseError, Error);
module.exports = ParseError;