try{ }catch(){ }finally{ }
finally通常用于关闭IO和资源
多个异常从小到大捕获
IDEA快捷键 Ctrl+Alt+T包裹代码,包括捕获异常
public void method() throws Exception{ throw new Exception(); }
Java异常
原文:https://www.cnblogs.com/xiafrog/p/14284705.html