mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
	
	
		
			12 lines
		
	
	
		
			259 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			259 B
		
	
	
	
		
			JavaScript
		
	
	
	
| 
								 | 
							
								/*
							 | 
						||
| 
								 | 
							
									MIT License http://www.opensource.org/licenses/mit-license.php
							 | 
						||
| 
								 | 
							
									Author Jarid Margolin @jaridmargolin
							 | 
						||
| 
								 | 
							
								*/
							 | 
						||
| 
								 | 
							
								"use strict";
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								module.exports = class WebpackError extends Error {
							 | 
						||
| 
								 | 
							
									inspect() {
							 | 
						||
| 
								 | 
							
										return this.stack + (this.details ? `\n${this.details}` : "");
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								};
							 |