|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
525 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 | "use strict";
|
|---|
| 6 |
|
|---|
| 7 | const WebpackError = require("../errors/WebpackError");
|
|---|
| 8 |
|
|---|
| 9 | class UnsupportedWebAssemblyFeatureError extends WebpackError {
|
|---|
| 10 | /**
|
|---|
| 11 | * Creates an instance of UnsupportedWebAssemblyFeatureError.
|
|---|
| 12 | * @param {string} message Error message
|
|---|
| 13 | */
|
|---|
| 14 | constructor(message) {
|
|---|
| 15 | super(message);
|
|---|
| 16 |
|
|---|
| 17 | /** @type {string} */
|
|---|
| 18 | this.name = "UnsupportedWebAssemblyFeatureError";
|
|---|
| 19 | this.hideStack = true;
|
|---|
| 20 | }
|
|---|
| 21 | }
|
|---|
| 22 |
|
|---|
| 23 | module.exports = UnsupportedWebAssemblyFeatureError;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.