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

java.lang.reflect.Throwable.scala Maven / Gradle / Ivy

There is a newer version: 2.2.6.3
Show newest version
package java.lang.reflect

class InvocationTargetException(s: String, e: Throwable) extends Error(s, e) {
  def this(s: String) = this(s, null)
  def this() = this(null, null)

  def getTargetException() = e
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy