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

tech.harmonysoft.oss.common.exception.ExceptionUtil.kt Maven / Gradle / Ivy

package tech.harmonysoft.oss.common.exception

import java.io.PrintWriter
import java.io.StringWriter

object ExceptionUtil {

    fun exceptionToString(e: Throwable): String {
        return StringWriter().apply {
            use {
                PrintWriter(this).use { pw ->
                    e.printStackTrace(pw)
                }
            }
        }.toString()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy