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

com.github.insanusmokrassar.AutoPostTelegramBot.utils.extensions.Throwable.kt Maven / Gradle / Ivy

package com.github.insanusmokrassar.AutoPostTelegramBot.utils.extensions

import java.io.ByteArrayOutputStream
import java.io.PrintStream

fun Throwable.collectStackTrace(): String {
    return ByteArrayOutputStream().also {
        printStackTrace(PrintStream(it))
    }.toString(Charsets.UTF_8.toString())
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy