UNPKG

react-ionicons

Version:

A React SVG ionicon component

21 lines (17 loc) 490 B
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; class UnsupportedFeatureWarning extends Error { constructor(module, message) { super(); if(Error.hasOwnProperty("captureStackTrace")) { Error.captureStackTrace(this, this.constructor); } this.name = "UnsupportedFeatureWarning"; this.message = message; this.origin = this.module = module; } } module.exports = UnsupportedFeatureWarning;