HarmonyLinkingError.js 435 B

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