Files
est-frame/node_modules/loader-runner/lib/LoaderLoadingError.js
2025-10-22 05:38:27 +00:00

12 lines
227 B
JavaScript
Executable File

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