eclipse / ecf

ECF project repository
7 stars 14 forks source link

Unwind the exception causes with Java11Http#performConnect #93

Open laeubi opened 8 months ago

laeubi commented 8 months ago

Currently there is a generic exception caught for all kind of errors but as the execution is actually performed async this means that any exception is already wrapped in an ExecutionException holding the real cause.

This unwinds the different causes that an happen (e.g. cancel, timeout, ...) and finally checks if this is an ExecutionException from the async operation-