R
Roedy Green
catch (IOException|SQLException ex) {
logger.log(ex);
throw ex;
}
Is it correct to say that I can't get at any of the parameters of the
IOException if I use the new JDK 1.7 multiple catch?
logger.log(ex);
throw ex;
}
Is it correct to say that I can't get at any of the parameters of the
IOException if I use the new JDK 1.7 multiple catch?