Nested try catch

Exception handlers can be nested within one another. It means try, catch or a finally block can in turn contains another set of try catch finally sequence. In such a scenario, when a particular catch or finally block is unable to handle an Exception, that exception will be rethrown automatically and such exception would be […]

Share this article on