错误地使用catch

错误地使用catch

try {
    // do something
} catch (Exception e) {

}

错误:这里,catch了Exception,但是在catch中什么动作都没做,那么所有的Exception都被“吞”了