| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.reflect.InvocationTargetException
InvocationTargetException | protected InvocationTargetException()(Code) | | Constructs a new instance of this class with its walkback filled in.
|
InvocationTargetException | public InvocationTargetException(Throwable exception)(Code) | | Constructs a new instance of this class with its walkback and target
exception filled in.
Parameters: exception - Throwable The exception which occurred while running theMethod or Constructor. |
InvocationTargetException | public InvocationTargetException(Throwable exception, String detailMessage)(Code) | | Constructs a new instance of this class with its walkback, target
exception and message filled in.
Parameters: detailMessage - String The detail message for the exception. Parameters: exception - Throwable The exception which occurred while running theMethod or Constructor. |
getCause | public Throwable getCause()(Code) | | Answers the cause of this Throwable, or null if there is no cause.
Throwable The receiver's cause. |
getTargetException | public Throwable getTargetException()(Code) | | Answers the exception which caused the receiver to be thrown.
|
|
|
|