Exceptions handling is the key in Java, that handle run time errors and indicate a calling method whenever an abnormal condition occurred.
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class SimpleExceptionHandling {
public static void main(String args[]){
try{
BufferedReader br = new BufferedReader(new FileReader("xyz"));
//Buffered reader is a class that reads text from a character-input stream.
//Here we are creating Buffered...