Kann ich mehrere Java-Ausnahmen in derselben catch-Klausel abfangen?

In Java möchte ich so etwas tun: try { ... } catch (/* code to catch IllegalArgumentException, SecurityException, IllegalAccessException, and NoSuchFieldException at the same time */) { someCode(); } ...anstatt: try { ... } catch (IllegalArgumentException e) { someCode(); } catch...