|
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
|
| Line | |
|---|
| 1 | "use strict";
|
|---|
| 2 |
|
|---|
| 3 | class 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 |
|
|---|
| 15 | module.exports = LoadingLoaderError;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.