error vs exception

Both Error and Exception are derived from Throwable in Java.
Error represents errors which are generally cannot be handled. For examples:
OutOfMemoryError, NoClassDefFoundError
Exception represents errors which can be caught and handled. For examples:
IOException, NullPointerException
Exception is divided in two categories; checked and unchecked Exception. 
Checked Exception require a mandatory try-catch code block to handle it.
Unchecked Exception mostly represent programming errors (NullPointerException 
or RuntimeException)
Errors are unchecked exception and the developer is not required 
to do anything with these.
All the Errors are Exceptions, but the reverse is not true.
In general Errors are which nobody can control or guess when it happened,
on the other hand Exception can be guessed and can be handled.

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source