Your IP : 216.73.216.79


Current Path : /var/www/html/redd/public/tailadmin/node_modules/webpack/lib/
Upload File :
Current File : /var/www/html/redd/public/tailadmin/node_modules/webpack/lib/HarmonyLinkingError.js

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
*/

"use strict";

const WebpackError = require("./WebpackError");

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