Java Exception Handling:Unchecked and Checked Exception
What are the various Checked exceptions defined in the java.lang.package and Unchecked RuntimeException subclasses
The built-in exceptions in java are categorized on the basis of whether the exception is handled by the java Compiler or not. Java consists of the following categories of built-in exceptions:
- Checked Exceptions
- Unchecked Exceptions