Hi,
I feel like drunk when I see the forest from lambda expressions ...
Is it possible to use Try in an exception handler? The exception handler is a technical construct that treats a given exception differently depending on the exception type. For example:
void globalIntegrationExceptionHandler(Throwable e) {
...
Try.withException(e)
.onFail(Exception1.class, ...)
.onFail(Exception2.class, ...)
Thanks for a hint.