Identify compile error (1 line of code) and runtime error (1 line of code) in the following code. Describe the errors briefly. How would you fix the code so that the errors do not occur, without altering the behavior of the program? class A{ public void c() throws Exception{ throw new Exception ("Hello"); } public void b(){ throw new RuntimeException ("Hi"); } public static void main(String[] args) { A h= new A(); h.c(); h.b(); }}