📄 HarmonyLinkingError.js
/home/palash/git/site/node_modules/webpack/lib/dependencies/HarmonyLinkingError.js
Language: js • Lines: 19
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
*/

"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";
		this.hideStack = true;
	}
}

module.exports = HarmonyLinkingError;