mirror of
				https://github.com/warengroup/eximiabots-radiox.git
				synced 2025-10-31 22:21:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			311 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			311 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
|     name: 'uncaughtException',
 | |
|     execute(client, error) {
 | |
|         client.funcs.logger("Error");
 | |
|         console.log(error.stack);
 | |
|         console.log('');
 | |
| 
 | |
|         if(error.name == "DiscordAPIError" && error.message == "Unknown interaction") return;
 | |
|         process.emit('SIGINT');
 | |
|     }
 | |
| }
 | 
