Skip to content
Advertisement

Guava cache and preserving checked exceptions

I’m refactoring some code to use guava Cache.

Initial code:

JavaScript

In order not to break something I need to preserve any thrown exception as is, without wrapping it.

Current solution appears somewhat ugly:

JavaScript

Is there any possible way to make it nicer?

Advertisement

Answer

Just after writing the question started thinking about utility method powered with generics. Then remembered something about Throwables. And yes, it’s already there! )

It may also be necessary to handle UncheckedExecutionException or even ExecutionError.

So the solution is:

JavaScript

Very nice!

See also ThrowablesExplained, LoadingCache.getUnchecked and Why we deprecated Throwables.propagate.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement