0
What are differences between error and exception in any programming language???
Please take an action...
4 ответов
+ 2
Both are errors. Programming languages have exception handling features to easily debug your program. You might want to search the definition of "compilet error" and "run-time error".
+ 2
In python, an error will stop the code at that point.
An exception allows you to handle the error in such a way that the code may continue.
+ 1
Errors occur during compile time but exceptions occur at run time.
+ 1
Error not handled by programmer while exception may be done through try catch statement .