10
동일한 catch 절에서 여러 Java 예외를 포착 할 수 있습니까?
Java에서는 다음과 같이하고 싶습니다. try { ... } catch (/* code to catch IllegalArgumentException, SecurityException, IllegalAccessException, and NoSuchFieldException at the same time */) { someCode(); } ...대신에: try { ... } catch (IllegalArgumentException e) { someCode(); } catch (SecurityException e) { someCode(); } catch (IllegalAccessException e) { someCode(); } catch …