Haha-Yes/event/listeners/unhandledRejection.js
2020-06-17 15:29:09 +02:00

17 lines
No EOL
398 B
JavaScript

const { Listener } = require('discord-akairo');
class unhandledRejectionListener extends Listener {
constructor() {
super('unhandledRejection', {
emitter: 'process',
event: 'unhandledRejection'
});
}
async exec(error, reason) {
console.error(reason);
return console.error(`\x1b[31mUncaught Promise Rejection: ${error}\x1b[37m`);
}
}
module.exports = unhandledRejectionListener;