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

com.wa9nnn.wa9nnnutil.tableui.ExceptionRenderer.scala Maven / Gradle / Ivy

The newest version!
package com.wa9nnn.wa9nnnutil.tableui

import java.io.{PrintWriter, StringWriter}

object ExceptionRenderer {
  def apply(exception: Exception):String = {
    val stringWriter: StringWriter = new StringWriter()
    val writer:PrintWriter = new PrintWriter(stringWriter)
    exception.printStackTrace(writer)
    writer.close()
    stringWriter.toString
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy