Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

12 lines
227 B
JavaScript

"use strict";
class LoadingLoaderError extends Error {
constructor(message) {
super(message);
this.name = "LoaderRunnerError";
Error.captureStackTrace(this, this.constructor);
}
}
module.exports = LoadingLoaderError;