ComputerDictionaries.org      Computer terms spelled out...
Home -› GT/TCP -› InvocationTargetException
Online dictionary
From all dictionaries     Only from this dictionary
 

Dictionaries by Category


High-Tech News

Definition Of:

InvocationTargetException

GT/TCPJDK Doc (JAVA)
- exception java.lang.reflect..InvocationTargetException 
public class InvocationTargetException extends Exception 
Tree:java.lang.Object - java.lang.Throwable - java.lang.Exception - java.lang.reflect.InvocationTargetException
InvocationTargetException is a checked exception that wraps an exception thrown by an invoked method or constructor.
 
- Constructor for class java.lang.reflect.InvocationTargetException 
protected InvocationTargetException ()
Constructs an InvocationTargetException with null as the target exception.
 
- Constructor for class java.lang.reflect.InvocationTargetException 
public InvocationTargetException (Throwable Â target)
Constructs a InvocationTargetException with a target exception.
 
- Constructor for class java.lang.reflect.InvocationTargetException 
public InvocationTargetException (Throwable Â target, String Â s)
Constructs a InvocationTargetException with a target exception and a detail message.
See also: , , , ,