diff options
Diffstat (limited to 'node_modules/loader-runner/lib/LoaderLoadingError.js')
-rw-r--r-- | node_modules/loader-runner/lib/LoaderLoadingError.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/node_modules/loader-runner/lib/LoaderLoadingError.js b/node_modules/loader-runner/lib/LoaderLoadingError.js new file mode 100644 index 0000000..fa1e54d --- /dev/null +++ b/node_modules/loader-runner/lib/LoaderLoadingError.js @@ -0,0 +1,11 @@ +"use strict"; + +class LoadingLoaderError extends Error { + constructor(message) { + super(message); + this.name = "LoaderRunnerError"; + Error.captureStackTrace(this, this.constructor); + } +} + +module.exports = LoadingLoaderError; |