Checked Exception

Checked exceptions are also called “compile Time exceptions” Compiler checks those exceptions during the compilation to see whether they are handled or not. If they are not handled, compiler will force us to handle and until we handle it, we get compile time error and we can’t proceed further. Since compiler “checks” for these exceptions […]

Share this article on

Exception overview

Understanding Exception and Exception Handling If we develop the application without exception handling then probably we should think of leaving our developer job and look out for something else. Yes, no matter whether clients asks or not, we need to identify unexpected behaviours and we need to handle them using exception handling in Java. Let’s […]

Share this article on