mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 19:00:56 +00:00
20 lines
410 B
JavaScript
20 lines
410 B
JavaScript
/*
|
|
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;
|