Gazebo_simulation-Frontend/node_modules/webpack/lib/RemovedPluginError.js
2020-12-21 10:29:31 -05: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);
}
};