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

net.dankito.utils.exception.ExceptionHelper.kt Maven / Gradle / Ivy

There is a newer version: 1.0.20
Show newest version
package net.dankito.utils.exception


open class ExceptionHelper {

    open fun getInnerException(exception: Exception, maxDepth: Int = 3): Exception {
        var innerException = exception
        var depth = 0

        while(innerException.cause is Exception && depth < maxDepth) {
            innerException = innerException.cause as Exception
            depth++
        }

        return innerException
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy