All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.psxpaul.util.ThrowableUtils.kt Maven / Gradle / Ivy

There is a newer version: 0.1.4
Show newest version
package com.github.psxpaul.util

fun rootCauseOf(t:Throwable):Throwable  {
    val cause: Throwable = t.cause ?: return t
    return rootCauseOf(cause)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy