JDK-6541507 : (reflect spec) Method.invoke() @throws InvocationTargetException
  • Type: Bug
  • Component: core-libs
  • Sub-Component: java.lang:reflect
  • Affected Version: 7
  • Priority: P4
  • Status: Closed
  • Resolution: Duplicate
  • OS: generic
  • CPU: generic
  • Submitted: 2007-04-02
  • Updated: 2024-07-01
  • Resolved: 2024-07-01
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 24
24Resolved
Related Reports
Duplicate :  
Relates :  
Description
API clarifications related to rfe 6531596, specifically to
Method.invoke handling of AbstractMethodError.

1. Method.invoke documentation change:

current:
InvocationTargetException - if the underlying method throws an exception
change to:
InvocationTargetException - wraps any Throwable thrown by the invocation
of the underlying method, including AbstractMethodError found during
dynamic method lookup of the underlying method.