Better exception handling in Java 7 : Multicatch and final rethrow

I'm happy to announce that an other improvement from the Project Coin has be marked for inclusion in Java 7 : Improved Exception Handling for Java, from Neal Gafter. This has been announced by Joe Darcy on his blog.

This improvement add two litlte improvements to exception handling :

  • Multicatch : You'll now be able to catch multi exceptions type in one catch block
  • Final Rethow : Allows you to catch an exception type and it's subtype and rethrow it without having to add a throws clause to the method signature.

Often, we have that kind of code :

} catch (FirstException ex) {
     logger.error(ex);
     throw ex;
} catch (SecondException ex) {
     logger.error(ex);
     throw ex;
}

But that code is heavy for nothing really interesting. A solution is to find a common supertype of these two exceptions type and catch just that type and rethrow it. But that can catch more exceptions than you want.

So now, with that new feature, you can do :

} catch (FirstException | SecondException ex) {
     logger.error(ex);
    throw ex;
}

A lot more cleaner, isn't it ?

And the second improvement is a little more complicated. Imagine that you want to catch all exceptions, make several operations and then rethrow it. The code isn't hard to make, but the big problem is that you must add a throws clause to your method signature to manage the new exception launched by your code and this is not the objective. Now, you can do that without adding an exception throws clause :

try {
     // some code
} catch (final Throwable ex) {
     // some more code
    throw ex;
}

Using the final keyword it allows you to throw an exception of the exact dynamic type that will be throwed. So if an IOException occurs, an IOException will be throwed. Of course, you have to declare the exceptions not caught. You throws clauses will exactly the same if you use the code (in //some code) without catching anything but now you can do something if that happens.

I think multi-catch is a great feature, but for me the final rethrow is not often useful for programmers and perhaps a little weird using the final keyword.

Related articles

  • Catch: A powerful yet simple C++ test framework
  • The reserved keywords of the Java Language
  • Java 7 : Languages updates from Project Coin
  • Java 7 has been released!
  • Speed up compilation by 13% by simplifying Catch unit tests
  • Reduce Catch tests compilation time by another 16%
  • Comments

    Comments powered by Disqus