Files
klz-cables.com/.pnpm-store/v10/files/05/8a6e80041bb8c31c4bd1e1acc4bcc639250816d2c9f305d3693be3c534360fc301bfe2daee1a106ca98a268533f7956266a9387c2d2af7c4c538f68cb8e533
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

21 lines
419 B
Plaintext

/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict";
const WebpackError = require("../WebpackError");
module.exports = class UnsupportedWebAssemblyFeatureError extends WebpackError {
/**
* @param {string} message Error message
*/
constructor(message) {
super(message);
/** @type {string} */
this.name = "UnsupportedWebAssemblyFeatureError";
this.hideStack = true;
}
};