java.lang.reflect.Throwable.scala Maven / Gradle / Ivy
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