mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
	
	
		
			12 lines
		
	
	
		
			214 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			214 B
		
	
	
	
		
			JavaScript
		
	
	
	
|  | /* | ||
|  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | ||
|  | */ | ||
|  | "use strict"; | ||
|  | 
 | ||
|  | module.exports = class HiddenStackError extends Error { | ||
|  | 	constructor(...args) { | ||
|  | 		super(...args); | ||
|  | 		this.hideStack = true; | ||
|  | 	} | ||
|  | }; |