Newer
Older
alert / js / node_modules / loader-runner / lib / LoaderLoadingError.js
@Réz István Réz István on 18 Nov 2021 227 bytes first commit
"use strict";

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

module.exports = LoadingLoaderError;