mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01:00
12 lines
229 B
JavaScript
Vendored
12 lines
229 B
JavaScript
Vendored
"use strict";
|
|
|
|
const WebpackError = require("./WebpackError");
|
|
|
|
module.exports = class RemovedPluginError extends WebpackError {
|
|
constructor(message) {
|
|
super(message);
|
|
|
|
Error.captureStackTrace(this, this.constructor);
|
|
}
|
|
};
|