About Exception

来源:互联网 发布:求质数的算法 编辑:程序博客网 时间:2024/06/12 00:45

 Creating an exception object and handing it to the runtime system is called throwing an exception.

1. checked exception

All exceptions are checked exceptions, except for those indicated by Error,RuntimeException, and their subclasses.

2. unchecked exceptions

Errors and runtime exceptions are collectively known as unchecked exceptions.