-
Bug
-
Resolution: Not an Issue
-
P4
-
20
-
generic
-
generic
A DESCRIPTION OF THE PROBLEM :
Currently, `MethodHandles.tryFinallyChecks(…)` allows a cleanup handle with a signature such as `(Error, V, A...)V`, even though the invocation of which will cause a `ClassCastException` at runtime if the `target` throws anything that is not a subclass of `Error`.
At the same time, a cleanup handle with the signatures `(Object, V, A...)V` or `(Serializable, V, A...)V` is perfectly valid, but `MethodHandles.tryFinallyChecks(…)` rejects it, as `Object` or `Serializable` are not subtypes of `Throwable`.
See also:
-JDK-8034820
-JDK-8254717
-JDK-8279800
-JDK-8284939
FREQUENCY : always
Currently, `MethodHandles.tryFinallyChecks(…)` allows a cleanup handle with a signature such as `(Error, V, A...)V`, even though the invocation of which will cause a `ClassCastException` at runtime if the `target` throws anything that is not a subclass of `Error`.
At the same time, a cleanup handle with the signatures `(Object, V, A...)V` or `(Serializable, V, A...)V` is perfectly valid, but `MethodHandles.tryFinallyChecks(…)` rejects it, as `Object` or `Serializable` are not subtypes of `Throwable`.
See also:
-
-
-
-
FREQUENCY : always