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

extras.tools.scala Maven / Gradle / Ivy

There is a newer version: 0.44.0
Show newest version
package extras

import java.io.{PrintWriter, StringWriter}

/** @author Kevin Lee
  * @since 2021-05-16
  */
object tools {

  implicit final class ThrowableOps(private val throwable: Throwable) extends AnyVal {
    def stackTraceString: String = {
      val stringWriter = new StringWriter()
      val printWriter  = new PrintWriter(stringWriter)
      throwable.printStackTrace(printWriter)
      stringWriter.toString
    }
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy