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

11 lines
215 B
JavaScript

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