// *** before: ***
try {
process();
} catch (InvalidArgumentException $e) {
report($e);
} catch (RuntimeException $e) {
report($e);
}
// *** in version 7.1: ***
try {
process();
} catch (InvalidArgumentException | RuntimeException $e) {
report($e);
}