Newer
Older
alert / js / node_modules / webpack / lib / wasm / UnsupportedWebAssemblyFeatureError.js
@Réz István Réz István on 18 Nov 2021 439 bytes first commit
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict";

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

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

		Error.captureStackTrace(this, this.constructor);
	}
};