uncaughtException

merge-requests/5/merge
loicbersier 4 years ago
parent 7f0453b3a5
commit b123ceb584

@ -0,0 +1,16 @@
const { Listener } = require('discord-akairo');
class unhandledRejectionListener extends Listener {
constructor() {
super('uncaughtException', {
emitter: 'process',
event: 'uncaughtException'
});
}
async exec(error) {
return console.error(`\x1b[31mUncaughtException: ${error}\x1b[37m`);
}
}
module.exports = unhandledRejectionListener;
Loading…
Cancel
Save