| 
									
										
										
										
											2013-10-11 16:42:25 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2017-01-05 00:48:53 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-25 05:17:47 +08:00
										 |  |  | const WebpackError = require("./WebpackError"); | 
					
						
							| 
									
										
										
										
											2017-01-05 00:48:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-25 05:17:47 +08:00
										 |  |  | class UnsupportedFeatureWarning extends WebpackError { | 
					
						
							| 
									
										
										
										
											2017-01-05 00:48:53 +08:00
										 |  |  | 	constructor(module, message) { | 
					
						
							|  |  |  | 		super(); | 
					
						
							| 
									
										
										
										
											2017-02-17 00:16:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 00:48:53 +08:00
										 |  |  | 		this.name = "UnsupportedFeatureWarning"; | 
					
						
							|  |  |  | 		this.message = message; | 
					
						
							|  |  |  | 		this.origin = this.module = module; | 
					
						
							| 
									
										
										
										
											2017-02-17 00:16:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Error.captureStackTrace(this, this.constructor); | 
					
						
							| 
									
										
										
										
											2017-01-05 00:48:53 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-11 16:42:25 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 00:48:53 +08:00
										 |  |  | module.exports = UnsupportedFeatureWarning; |