UNPKG

408 BJavaScriptView Raw
1/*
2 MIT License http://www.opensource.org/licenses/mit-license.php
3*/
4"use strict";
5
6const WebpackError = require("./WebpackError");
7
8module.exports = class HarmonyLinkingError extends WebpackError {
9 /** @param {string} message Error message */
10 constructor(message) {
11 super(message);
12 this.name = "HarmonyLinkingError";
13 this.hideStack = true;
14
15 Error.captureStackTrace(this, this.constructor);
16 }
17};