Error vs Exception

One of the most difficult parts of programming languages is to know the difference between Error and Exception. I used to get confused a lot about this. So, to help my mates to overcome this problem, I thought of writing a blog on it. After a long time…


This content originally appeared on DEV Community and was authored by Vishnubhotla V D V Bharadwaj

One of the most difficult parts of programming languages is to know the difference between Error and Exception. I used to get confused a lot about this. So, to help my mates to overcome this problem, I thought of writing a blog on it. After a long time experimenting, I have decided to write this blog in a table fashion(sounds odd, but easy to understand). Here you go.

What is an Exception?

An exception is an event that occurs during the execution of a program that disrupts the normal flow of instructions during the execution of a program.

What is an Error?

Errors are the mistakes or faults in the program that causes the program to behave unexpectedly.

Types of Exception

Exception: Most languages throw an exception at run-time except java. Java provides two types of exceptions. Let's see them.

Checked Exception: Checked exceptions are known to the compiler and must handle at compile time.

Unchecked Exception: These errors are not checked at runtime.

Types of Error

Compile Time Error/ Syntax Error: Common syntactical mistakes in the code.

Run Time Error: Run time errors that are caused by the environment in which the program is running.

Logical Error: Mistakes in the logical flow of the program.

Here comes the Point of Confusion :

  • Only confusion is between run-time errors and exceptions.
  • An exception is something that interrupts the normal flow of the program.
  • Something exceptional has happened within the program which should be handled to run the program uninterruptedly.
  • An exception that can be handled even in the compile-time in a language like java while that is not true in the case of run-time error.
  • Most of the run-time errors caused by the environment in which the application is running.
  • An error must be resolved. You simply cannot ignore them.

Exception

  • They are caused by the program itself.
  • Null reference exception is when the program tries to access the property of the null object.
  • You can recover from the exceptions by handling them through try-catch classes.
  • It is recommended to handle exceptions in the program.

Error(Run-Time)

  • Errors are mostly caused by the environment in which the application is running.
  • OutOfMemoryError occurs when JVM runs out of memory or StackOverFlow error occurs when stack overflows.
  • You cannot recover the program from the error. So, you must resolve the error.

Examples of Exception

  • NullPointerException
  • ArrayIndexOutOfBoundException
  • IOException

Example of Errors

  • OutOfMemoryError

Summary

  • So, Exception is not a run-time error.
  • There is a clear difference between errors and exceptions in a language like java.
  • Different languages interpret error differently.

That's a wrap. Share your thoughts in the comment section. Connect with me on Twitter for more awesome content.


This content originally appeared on DEV Community and was authored by Vishnubhotla V D V Bharadwaj


Print Share Comment Cite Upload Translate Updates
APA

Vishnubhotla V D V Bharadwaj | Sciencx (2021-06-22T16:16:31+00:00) Error vs Exception. Retrieved from https://www.scien.cx/2021/06/22/error-vs-exception/

MLA
" » Error vs Exception." Vishnubhotla V D V Bharadwaj | Sciencx - Tuesday June 22, 2021, https://www.scien.cx/2021/06/22/error-vs-exception/
HARVARD
Vishnubhotla V D V Bharadwaj | Sciencx Tuesday June 22, 2021 » Error vs Exception., viewed ,<https://www.scien.cx/2021/06/22/error-vs-exception/>
VANCOUVER
Vishnubhotla V D V Bharadwaj | Sciencx - » Error vs Exception. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/06/22/error-vs-exception/
CHICAGO
" » Error vs Exception." Vishnubhotla V D V Bharadwaj | Sciencx - Accessed . https://www.scien.cx/2021/06/22/error-vs-exception/
IEEE
" » Error vs Exception." Vishnubhotla V D V Bharadwaj | Sciencx [Online]. Available: https://www.scien.cx/2021/06/22/error-vs-exception/. [Accessed: ]
rf:citation
» Error vs Exception | Vishnubhotla V D V Bharadwaj | Sciencx | https://www.scien.cx/2021/06/22/error-vs-exception/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.