Class java.lang.reflect.InvocationTargetException
All Packages Class Hierarchy This Package Previous Next Index
Class java.lang.reflect.InvocationTargetException
Object
|
+----Throwable
|
+----Exception
|
+----java.lang.reflect.InvocationTargetException
- public class InvocationTargetException
- extends Exception
InvocationTargetException is a checked exception that wraps
an exception thrown by an invoked method or constructor.
- See Also:
- Method, Constructor
-
java.lang.reflect.InvocationTargetException()
-
-
java.lang.reflect.InvocationTargetException(Throwable)
- Constructs a InvocationTargetException with a target exception.
-
java.lang.reflect.InvocationTargetException(Throwable, String)
- Constructs a InvocationTargetException with a target exception
and a detail message.
-
getTargetException()
- Get the thrown target exception.
InvocationTargetException
protected InvocationTargetException()
InvocationTargetException
public InvocationTargetException(Throwable target)
- Constructs a InvocationTargetException with a target exception.
InvocationTargetException
public InvocationTargetException(Throwable target,
String s)
- Constructs a InvocationTargetException with a target exception
and a detail message.
getTargetException
public java.lang.Throwable getTargetException()
- Get the thrown target exception.
All Packages Class Hierarchy This Package Previous Next Index