Exception Handling
While writing a program, it is obvious that any abnormal condition may arise.By abnormal condition we mean, a condition that effects the normal execution of our code. When these conditions occur, the execution of our code is likely to stop. Generally, we refer this abnormal condition as an error. But to say it error every-time, is not correct. If our code is able to handle this weird condition, then we’ve to say it an exceptional condition or simply an exception. And the process to handle this exception is known as exceptional handling. Consider a scenario in which you have to […]
Exception Handling Read More »