You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have Try inside CompletableFuture, and then 2 of these CompletableFuture are then linked with thenCombine and fed into another function All the existing exception handling logic works fine, but when I change thenCombine to thenCombineAsync all the exception handling logic seems to be ignored and I keep getting NullPointerException (even if the originally handled exception was something else).
The text was updated successfully, but these errors were encountered:
I have
Try
insideCompletableFuture
, and then 2 of theseCompletableFuture
are then linked withthenCombine
and fed into another function All the existing exception handling logic works fine, but when I changethenCombine
tothenCombineAsync
all the exception handling logic seems to be ignored and I keep gettingNullPointerException
(even if the originally handled exception was something else).The text was updated successfully, but these errors were encountered: