| Author |
Runtime Exception
|
swarupa patil
Ranch Hand
Joined: Feb 22, 2006
Posts: 62
|
|
Hi Ranchers I have doubt about the RuntimeException.If method1()1 use throws clause and throws RuntimeException.The rule for exception handelling is calling method to method1() must either caught the exception or throws exception. Code: Is this code comile (compile)?why:why not; public void method1()throws NullPointerException { } public void method2() { method2(); }
|
 |
Keith Lynn
Ranch Hand
Joined: Feb 07, 2005
Posts: 2341
|
|
|
RuntimeException, Error, and their subclasses are unchecked.
|
 |
 |
|
|
subject: Runtime Exception
|
|
|