Haha-Yes/event/listeners/uncaughtException.js
2020-05-03 22:42:05 +02:00

16 lines
No EOL
354 B
JavaScript

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;