eximiabots-radiox/src/client/events/uncaughtException.js
2021-09-10 01:54:30 +03:00

11 lines
217 B
JavaScript

module.exports = {
name: 'uncaughtException',
execute(client, error) {
client.funcs.logger("Error");
console.log(error.stack);
console.log('');
process.emit('SIGINT');
}
}