2015-06-27 17:34:17 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2017-01-02 19:08:28 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
class ChunkRenderError extends Error {
|
|
|
|
|
|
|
|
constructor(chunk, file, error) {
|
|
|
|
super();
|
|
|
|
|
|
|
|
if(Error.hasOwnProperty("captureStackTrace")) {
|
|
|
|
Error.captureStackTrace(this, this.constructor);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.name = "ChunkRenderError";
|
|
|
|
this.error = error;
|
|
|
|
this.message = error.message;
|
|
|
|
this.details = error.stack;
|
|
|
|
this.file = file;
|
|
|
|
this.chunk = chunk;
|
|
|
|
}
|
2015-06-27 17:34:17 +08:00
|
|
|
}
|
|
|
|
|
2017-01-02 19:08:28 +08:00
|
|
|
module.exports = ChunkRenderError;
|