You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/event/listeners/uncaughtException.js

16 lines
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;