try-catch with Exception Class
     try
     {
       . . .   // Statements that might contain an error
   throw new DataException(“bad data”);
     }
     catch(DataException except)
     {
       System.out.println(except.getMessage());
     }
       What is Class DataException?