aboutsummaryrefslogtreecommitdiff
path: root/node_modules/webpack/lib/WebpackError.js
blob: abd716a639c80513d9af1c2377a85138df52447c (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Jarid Margolin @jaridmargolin
*/
"use strict";

module.exports = class WebpackError extends Error {
	inspect() {
		return this.stack + (this.details ? `\n${this.details}` : "");
	}
};