Java Platform 1.2

java.lang.reflect
Class InvocationTargetException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.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, Serialized Form

Constructor Summary
protected InvocationTargetException()
          Constructs an InvocationTargetException with null as the target exception.
  InvocationTargetException(Throwable target)
          Constructs a InvocationTargetException with a target exception.
  InvocationTargetException(Throwable target, String s)
          Constructs a InvocationTargetException with a target exception and a detail message.
 
Method Summary
 Throwable getTargetException()
          Get the thrown target exception.
 void printStackTrace()
          Prints the stack trace of the thrown target exception.
 void printStackTrace(PrintStream ps)
          Prints the stack trace of the thrown target exception to the specified print stream.
 void printStackTrace(PrintWriter pw)
          Prints the stack trace of the thrown target exception to the specified print writer.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.
Method Detail

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

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

Java Platform 1.2

Submit a bug or feature Version 1.2 of Java Platform API Specification
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.