java异常分类checked_Java 异常的几种分类
1、检查异常(checked exceptions) & 不检查异常(unchecked exceptions)。通常,Java的异常(包括Exception和Error)分为检查异常(checked exceptions)和不检查异常(unchecked exceptions)。检查异常(checked exceptions):除了RuntimeException及其子类以外,其他的E...