react-ionicons
Version:
A React SVG ionicon component
22 lines (18 loc) • 467 B
JavaScript
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
;
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;
}
}
module.exports = ModuleWarning;