mirror of
https://github.com/HMCore/Orbot.git
synced 2025-12-12 13:56:18 +00:00
10 lines
330 B
Kotlin
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())
|
|
}
|
|
} |