source: frontend/node_modules/loader-runner/lib/LoaderLoadingError.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 342 bytes
RevLine 
[9af201e]1"use strict";
2
3class LoadingLoaderError extends Error {
4 constructor(message) {
5 super(message);
6 this.name = "LoaderRunnerError";
7
8 if (Error.captureStackTrace) {
9 // eslint-disable-next-line unicorn/no-useless-error-capture-stack-trace
10 Error.captureStackTrace(this, this.constructor);
11 }
12 }
13}
14
15module.exports = LoadingLoaderError;
Note: See TracBrowser for help on using the repository browser.