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>
23 lines
465 B
Text
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;
|