概述

Java - 异常 - 图1

非检查异常(unckecked exception):运行时异常,Error、RuntimeException。
检查异常**(checked exception):必须进行处理(强制性)

较出名的异常

空指针异常 NullPointerException(NPE)
数组越界异常 ArrayIndexOutOfBoundsException
文件已结束异常 EOFException

异常追踪

Java - 异常 - 图2

异常处理

try…catch…finally
throws
**

自定义异常

日志记录

参考
https://segmentfault.com/a/1190000009708014
https://blog.csdn.net/yangzhengjianglove/article/details/81233784