mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
15 lines
552 B
Kotlin
15 lines
552 B
Kotlin
package com.github.libretube.util
|
|
|
|
import com.github.libretube.preferences.PreferenceHelper
|
|
|
|
class ExceptionHandler(
|
|
private val defaultExceptionHandler: Thread.UncaughtExceptionHandler?
|
|
) : Thread.UncaughtExceptionHandler {
|
|
override fun uncaughtException(thread: Thread, exc: Throwable) {
|
|
// save the error log
|
|
PreferenceHelper.saveErrorLog(exc.stackTraceToString())
|
|
// throw the exception with the default exception handler to make the app crash
|
|
defaultExceptionHandler?.uncaughtException(thread, exc)
|
|
}
|
|
}
|