LoaderLoadingError.js 227 B

1234567891011
  1. "use strict";
  2. class LoadingLoaderError extends Error {
  3. constructor(message) {
  4. super(message);
  5. this.name = "LoaderRunnerError";
  6. Error.captureStackTrace(this, this.constructor);
  7. }
  8. }
  9. module.exports = LoadingLoaderError;