Files
red_de_investigacion_front/node_modules/webpack/lib/RemovedPluginError.js
T
DanielRamirezGe 5eecfbf6cd first commit
2020-01-14 20:43:08 -06: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);
}
};