Item 77. Exception Ignore
class Example {
public static void main(String[] args) {
try {
// do something
} catch (Exception e) {
// μ무κ²λ νμ§ μμ
}
}
}class Example {
public static void main(String[] args) {
try {
// do something
} catch (Exception ignored) {
// ~~μ μ΄μ λ‘ μμΈλ₯Ό 무μν¨
}
}
}Last updated