Exception hierarchy in java
- by Abhishek Jain
As Error and Exception are subclass of throwable class, we can throw any error, runtime ex and other ex. Also we can catch any of these type.
Why do we usually catch only checked Exception?
Can somebody provide me good links for exception with examples?