java catch multiple types of exception code example
Example 1: java catch multiple exceptions
catch(IOException | SQLException ex){
logger.error(ex);
throw new MyException(ex.getMessage());
}
Example 2: Java catch multiple exceptions and rethrow exception
// syntax in java 7 Java catch multiple exceptions and rethrow exception
try
{
// code that throw exceptions 1 and 3
}
catch(SQLException | IOException e)
{
logger.log(e);
}
catch(Exception e)
{
logger.severe(e);
}