Source code

Revision control

Copy as Markdown

Other Tools

/*
*/
"use strict";
const WebpackError = require("../errors/WebpackError");
class HarmonyLinkingError extends WebpackError {
/** @param {string} message Error message */
constructor(message) {
super(message);
/** @type {string} */
this.name = "HarmonyLinkingError";
/** @type {boolean} */
this.hideStack = true;
}
}
module.exports = HarmonyLinkingError;