WXL
3 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
*/
 
"use strict";
 
const WebpackError = require("../WebpackError");
 
module.exports = class UnsupportedWebAssemblyFeatureError extends WebpackError {
    /**
     * Creates an instance of UnsupportedWebAssemblyFeatureError.
     * @param {string} message Error message
     */
    constructor(message) {
        super(message);
 
        /** @type {string} */
        this.name = "UnsupportedWebAssemblyFeatureError";
        this.hideStack = true;
    }
};