0
What is an Exception
5 Answers
0
An exception is a problem that arises during the execution of a program. A C++ exception is a response to an exceptional circumstance that arises while a program is running, such as an attempt to divide by zero.
0
not in C++,I m asking in java
0
tanq
0
Meaning and logic behind remains same working manner varies.
0
when the normal flow of program is disrupted then an exception is thrown. There are two types of exceptions
1. checked exception : This occurs during compile time.
2. unchecked exception : This occurs during run-time.