thingsboard/ui/node_modules/webpack/lib/RemovedPluginError.js
2020-05-19 11:43:42 +03:00

12 lines
229 B
JavaScript

"use strict";
const WebpackError = require("./WebpackError");
module.exports = class RemovedPluginError extends WebpackError {
constructor(message) {
super(message);
Error.captureStackTrace(this, this.constructor);
}
};