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