WAP that demostrates the use of throw keyword in exception handling. main() method will call a(), a() calls b(), b() calls c() and method c(), b() and a() will throw an exception. Implement this hierarchy
/* WAP that demostrates the use of throw keyword in exception handling. main() method will call a(), a() calls b(), b() calls c() and method c(), b() and a() will throw an exception. Implement this hierarchy.*/ import java.io.*; class Tk { void a() throws IOException { throw new IOException("error che bhai"); } void b() throws IOException { a(); System.out.println("b che"); } void c() { try { b(); System.out.println("c che"); } catch(Exception e) { ...