try-catch-finally block in java programming try block To handle a run time error and monitor the results,we simply enclose the code inside a try block.If an exception occurs within the try block,it is handled by the appropriate exception handler ( catch block) associated with the try block.A try block should have one (or more) catch blocks or one finally block or both.Exception handlers are put in association with a try block by providing one or more catch block directly after the try block Syntax of try catch and finally block try { //java statements(risky code) } catch(Exception e) { //handled code } finally { //cleanup code } catch block A catch block is specified by the keyword catch followed by a single argument within parentheses().A catch block is a group ...