📄 CodeGenerationError.js
/home/palash/git/site/node_modules/webpack/lib/errors/CodeGenerationError.js
Language: js • Lines: 35
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/

"use strict";

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;