Unchecked Exception

Unchecked Exceptions are not checked by compiler during compile time, we will not be forced to handle it, but it is always best to handle the exceptions. If we don’t handle unchecked exception then compilation error will not come. All unchecked exceptions are subclasses of RuntimeException class. Generally, these exceptions occur due to the wrong […]

Share this article on