Buckets:
| /* | |
| MIT License http://www.opensource.org/licenses/mit-license.php | |
| Author Tobias Koppers @sokra | |
| */ | |
| ; | |
| const WebpackError = require("./WebpackError"); | |
| /** @typedef {import("./Module")} Module */ | |
| class CodeGenerationError extends WebpackError { | |
| /** | |
| * Create a new CodeGenerationError | |
| * @param {Module} module related module | |
| * @param {Error} error Original error | |
| */ | |
| constructor(module, error) { | |
| super(); | |
| /** @type {string} */ | |
| this.name = "CodeGenerationError"; | |
| /** @type {Module} */ | |
| this.module = module; | |
| /** @type {Error} */ | |
| this.error = error; | |
| /** @type {string} */ | |
| this.message = error.message; | |
| /** @type {string} */ | |
| this.details = error.stack; | |
| } | |
| } | |
| /** @type {typeof CodeGenerationError} */ | |
| module.exports = CodeGenerationError; | |
Xet Storage Details
- Size:
- 780 Bytes
- Xet hash:
- 071a07d1276e34a96f93e78aa76d625981b1ee3d4724d19891c4345e8948107f
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.