mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2025-04-19 21:44:47 +00:00
11 lines
215 B
JavaScript
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');
|
|
}
|
|
}
|