Files
Orbot/src/main/kotlin/de/wulkanat/ErrorHandler.kt
2020-08-14 22:43:53 +02:00

10 lines
330 B
Kotlin

package de.wulkanat
import net.dv8tion.jda.api.events.ExceptionEvent
import net.dv8tion.jda.api.hooks.ListenerAdapter
class ErrorHandler : ListenerAdapter() {
override fun onException(event: ExceptionEvent) {
Admin.error(event.cause.message ?: event.cause.localizedMessage, event.cause.stackTrace.toString())
}
}