Files
klz-cables.com/.pnpm-store/v10/files/6a/517b84d3a283739b9eaee779818538e0ef0f5b551d9133f1860e7f8807d59e9678c880c0460728e888f37141e840726f5a06ddbdee979947f737154a62a4e9
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

24 lines
465 B
Plaintext

'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;