mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2025-04-19 07:24:48 +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');
|
|
}
|
|
}
|