mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			392 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			392 B
		
	
	
	
		
			JavaScript
		
	
	
	
| /*
 | |
| 	MIT License http://www.opensource.org/licenses/mit-license.php
 | |
| 	Author Tobias Koppers @sokra
 | |
| */
 | |
| "use strict";
 | |
| 
 | |
| class ModuleWarning extends Error {
 | |
| 	constructor(module, warning) {
 | |
| 		super();
 | |
| 
 | |
| 		this.name = "ModuleWarning";
 | |
| 		this.module = module;
 | |
| 		this.message = warning;
 | |
| 		this.warning = warning;
 | |
| 
 | |
| 		Error.captureStackTrace(this, this.constructor);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| module.exports = ModuleWarning;
 |