Merge remote-tracking branch 'origin/issue4434-exceptionasflowcontrol' into issue4434-exceptionasflowcontrol

This commit is contained in:
Clément Fournier
2023-05-26 11:23:37 +02:00

View File

@ -113,7 +113,7 @@ class SubE extends TopE { }
}
return result;
} catch (NullPointerException | InvalidCacheLoadException e) {
throw e; // <-- Violation
throw e;
} catch (CacheLoaderException e) {
throw new ExecutionException(e.getCause());
} catch (Exception e) {