You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
229 B

4 years ago
  1. "use strict";
  2. const WebpackError = require("./WebpackError");
  3. module.exports = class RemovedPluginError extends WebpackError {
  4. constructor(message) {
  5. super(message);
  6. Error.captureStackTrace(this, this.constructor);
  7. }
  8. };