Home | History | Annotate | Download | only in reflect

Lines Matching defs:target

33  * the general purpose exception-chaining mechanism.  The "target exception"
49 * This field holds the target if the
50 * InvocationTargetException(Throwable target) constructor was
56 private Throwable target;
60 * {@code null} as the target exception.
67 * Constructs a InvocationTargetException with a target exception.
69 * @param target the target exception
71 public InvocationTargetException(Throwable target) {
73 this.target = target;
77 * Constructs a InvocationTargetException with a target exception
80 * @param target the target exception
83 public InvocationTargetException(Throwable target, String s) {
85 this.target = target;
89 * Get the thrown target exception.
95 * @return the thrown target exception (cause of this exception).
98 return target;
102 * Returns the cause of this exception (the thrown target exception,
109 return target;