Multiple catch with java 7

Java 7 has introduced a new way of writing multiple catch blocks when we want to perform similar task in each catch block. Consider below code snippet try {       execute(); //exception might be thrown   } catch (IOException ex) {       LOGGER.error(ex);   } catch (SQLException ex) {     […]

Share this article on