try catch with multiple exceptions code example
Example 1: python catch multiple exceptions
except (IDontLikeYouException, YouAreBeingMeanException) as e:
pass
Example 2: java catch multiple exceptions
catch(IOException | SQLException ex){
logger.error(ex);
throw new MyException(ex.getMessage());
}