source: frontend/node_modules/webpack/lib/dependencies/HarmonyLinkingError.js@ cdcff72

Last change on this file since cdcff72 was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 410 bytes
Line 
1/*
2 MIT License http://www.opensource.org/licenses/mit-license.php
3*/
4
5"use strict";
6
7const WebpackError = require("../errors/WebpackError");
8
9class HarmonyLinkingError extends WebpackError {
10 /** @param {string} message Error message */
11 constructor(message) {
12 super(message);
13 /** @type {string} */
14 this.name = "HarmonyLinkingError";
15 this.hideStack = true;
16 }
17}
18
19module.exports = HarmonyLinkingError;
Note: See TracBrowser for help on using the repository browser.