10
Aynı catch maddesinde birden fazla Java istisnası yakalayabilir miyim?
Java, böyle bir şey yapmak istiyorum: try { ... } catch (/* code to catch IllegalArgumentException, SecurityException, IllegalAccessException, and NoSuchFieldException at the same time */) { someCode(); } ...onun yerine: try { ... } catch (IllegalArgumentException e) { someCode(); } catch (SecurityException e) { someCode(); } catch (IllegalAccessException e) { …