| Author |
Exception
|
adam Lui
Ranch Hand
Joined: Sep 03, 2007
Posts: 186
|
|
"if the overridden method does not throw any exception, the overriding method cannot throw any checked exception, but it can still throw a runtime exception" does it mean... class A { void methodA {} } class B extends A{ void methodA throws ArrayIndexOutOfBoundsException, ClassCastException {} } is legal??
|
boolean b = true;<br />System.out.println ("I believe in Java.<br />Java will make my dream come " + b);
|
 |
Yogesh Baraskar
Ranch Hand
Joined: Oct 07, 2007
Posts: 33
|
|
Hi This is perfectly legal. You can declare any runtime exceptions
|
 |
 |
|
|
subject: Exception
|
|
|