10
Czy mogę złapać wiele wyjątków Java w tej samej klauzuli catch?
W Javie chcę zrobić coś takiego: try { ... } catch (/* code to catch IllegalArgumentException, SecurityException, IllegalAccessException, and NoSuchFieldException at the same time */) { someCode(); } ...zamiast: try { ... } catch (IllegalArgumentException e) { someCode(); } catch (SecurityException e) { someCode(); } catch (IllegalAccessException e) { someCode(); …