2016-01-04 04:42:56 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2017-01-09 11:48:49 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
class ModuleWarning extends Error {
|
|
|
|
constructor(module, warning) {
|
|
|
|
super();
|
|
|
|
|
|
|
|
if(Error.hasOwnProperty("captureStackTrace")) {
|
|
|
|
Error.captureStackTrace(this, this.constructor);
|
|
|
|
}
|
|
|
|
this.name = "ModuleWarning";
|
|
|
|
this.module = module;
|
|
|
|
this.message = warning;
|
|
|
|
this.warning = warning;
|
|
|
|
}
|
2016-01-04 04:42:56 +08:00
|
|
|
}
|
|
|
|
|
2017-01-09 11:48:49 +08:00
|
|
|
module.exports = ModuleWarning;
|