17 lines
No EOL
398 B
JavaScript
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; |