Serializablepublic class InvocationTargetException extends ReflectiveOperationException
| Modifier | Constructor | Description | 
|---|---|---|
| protected  | Constructs an  InvocationTargetExceptionwithnullas the target exception. | |
| Constructs a InvocationTargetException with a target exception. | ||
| Constructs a InvocationTargetException with a target exception and a detail message. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Throwable | getCause() | Returns the cause of this exception (the thrown target exception, which may be  null). | 
| Throwable | getTargetException() | Get the thrown target exception. | 
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
protected InvocationTargetException()
InvocationTargetException with null as the target exception.public InvocationTargetException(Throwable target)
target - the target exceptionpublic InvocationTargetException(Throwable target, String s)
target - the target exceptions - the detail messagepublic Throwable getTargetException()
Throwable.getCause() method is now the preferred means of obtaining this information.public Throwable getCause()
null).
    © 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/reflect/InvocationTargetException.html