java.lang.reflect
Class InvocationTargetException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.reflect.InvocationTargetException
- All Implemented Interfaces:
- Serializable
- 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
, Serialized Form
InvocationTargetException
protected InvocationTargetException()
- Constructs an
InvocationTargetException
with
null
as the target exception.
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 Throwable getTargetException()
- Get the thrown target exception.
printStackTrace
public void printStackTrace()
- Prints the stack trace of the thrown target exception.
- Overrides:
printStackTrace
in class Throwable
- See Also:
System.err
printStackTrace
public void printStackTrace(PrintStream ps)
- Prints the stack trace of the thrown target exception to the specified
print stream.
- Overrides:
printStackTrace
in class Throwable
- Following copied from class:
java.lang.Throwable
- Parameters:
s
- PrintStream
to use for output
printStackTrace
public void printStackTrace(PrintWriter pw)
- Prints the stack trace of the thrown target exception to the
specified print writer.
- Overrides:
printStackTrace
in class Throwable
- Following copied from class:
java.lang.Throwable
- Parameters:
s
- PrintWriter
to use for output
Java is a trademark or registred trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2000 Sun Microsystems, Inc. 901 San Antonio Road,
Palo, Alto, California, 94303, U.S.A All Rights Reserved.