Java’s lambda expressions can be problematic for exception handling. But you can use type inference rules to your advantage to throw checked exceptions.
Handling checked exceptions in lambda expressions can often be frustrating. Luckily, there is a type inference rule that we can exploit.
While reading through the Java Language Specification, we can find interesting information:
Otherwise, if the bound set contains „throws αi“, and the proper upper bounds of „αi“ are, at most, Exception, Throwable, and Object, then Ti = RuntimeException.
This was originally intended to, for example, solve the ambiguous problem of inferring checked exception types from empty lambda expression bodies.
And now, it’s possible to exploit that rule and create a util method that will allow us to rethrow checked exceptions behind the compiler’s back:
And indeed, the following works as
un
expected:
The boundary line between checked and unchecked exceptions does not exist at runtime, so everything works normally when running the code.
Since it’s possible to rethrow checked exceptions as unchecked, why not use this approach for minimizing the amount of boilerplate used when dealing with aching exceptions in lambda expressions‘ bodies?
Inside the implementation, we’d simply create a new lambda that delegates the job to the old one, but rethrows the exception in case it’s raised:
And now, we no longer need to try-catch exceptions in lambda expressions:
Instead of:
As expected, Sneaky Throws is a double-edged sword.
Just because you don’t like the rules, doesn’t mean its a good idea to take the law into your own hands. Your advice is irresponsible because it places the convenience of the code writer over the far more important considerations of transparency and maintainability of the program. — Brian Goetz ( source)
Besides the danger of having a leakage of exceptions, we can’t catch exceptions using their type because of javac’s „helping“ hand — which is a clear loss of flexibility:
This
concept
hack has been around for a couple of years, but with a new type inference rule, it became much cleaner to execute — which can be particularly handy when dealing with exceptions and lambda expressions — but it has its price .
A number of libraries utilize this approach. For example, Lombok and Vavr.
Code snippets can be found on GitHub.