Hi folks,
I apologize for not updating the blog and delaying the sessions as well. I was very busy with some work items in office hope you understand.
Exceptions is one of the most easy and important topic in Java. Just burn in the following hierarchy.

There are two kinds of exceptions only. One is checked and other is unchecked. All exceptions extending Exception except RuntimeException are checked exceptions. "Unchecked" exceptions are named so because they cannot be detected at compile time and compiler will allow you to run your program even if you are sure that the exception will come due to which you don't have to handle or declare these exceptions according to compiler but you have to if you don't wanna see your program crashing at runtime. Please go through the following references do study about exceptions in more details.
Exceptions
Effective Exceptions
I apologize for not updating the blog and delaying the sessions as well. I was very busy with some work items in office hope you understand.
Exceptions is one of the most easy and important topic in Java. Just burn in the following hierarchy.
There are two kinds of exceptions only. One is checked and other is unchecked. All exceptions extending Exception except RuntimeException are checked exceptions. "Unchecked" exceptions are named so because they cannot be detected at compile time and compiler will allow you to run your program even if you are sure that the exception will come due to which you don't have to handle or declare these exceptions according to compiler but you have to if you don't wanna see your program crashing at runtime. Please go through the following references do study about exceptions in more details.
Exceptions
Effective Exceptions
No comments:
Post a Comment