Throwable异常
Exception
Checked Exception
- IO 相关的异常
- ClassNotFoundException
- SQLException
Unchecked Exception
-
RuntimeException及其子类
- NullPointerException(空指针错误)
- IllegalArgumentException(参数错误比如方法入参类型错误)
- NumberFormatException(字符串转换为数字格式错误,IllegalArgumentException的子类)
- ArrayIndexOutOfBoundsException(数组越界错误)
- ClassCastException(类型转换错误)
- ArithmeticException(算术错误)
- SecurityException (安全错误比如权限不够)
- UnsupportedOperationException(不支持的操作错误比如重复创建同一用户)
Error
程序无法处理的错误 ,我们没办法通过 catch 来进行捕获不建议通过catch捕获
Virtual MachineError
- Java 虚拟机运行错误
OutOfMemoryError
- 虚拟机内存不够错误
NoClassDefFoundError
- 类定义错误