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.

15 lines
415 B

4 years ago
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. function OrderUndefinedError(module) {
  6. Error.call(this);
  7. Error.captureStackTrace(this, OrderUndefinedError);
  8. this.name = 'OrderUndefinedError';
  9. this.message = 'Order in extracted chunk undefined';
  10. this.module = module;
  11. }
  12. exports.default = OrderUndefinedError;
  13. OrderUndefinedError.prototype = Object.create(Error.prototype);