Exception Hierarchy
Throwable, Error, Exception
4 min read
Exception Hierarchy
All exceptions derive from Throwable.
Throwable
āāā Error
āāā Exception
āāā Checked
āāā RuntimeException
Code Examples
Hierarchy usage
java
1
2catch (RuntimeException e) {}
3 Use Cases
- Correct exception handling
Common Mistakes to Avoid
- Catching Throwable
- Handling Error explicitly