饮食异常:
try { … do something meaningful } catch(SomeException ex) { // eat exception }
try { ... } catch(SomeException e) { //Do whatever is needed with e throw; //This rethrows and preserves call stack. }