| Author |
Problem in Exception
|
Irfan Zubair
Greenhorn
Joined: Jun 12, 2012
Posts: 17
|
|
I don't know why I am getting this error.
MyClass.java:6: unreachable statement
System.out.println("2");
^
1 error
Can anyone tell me why?
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 9947
|
|
first, let's format this correctly:
Now...how exactly do you think you can reach line 9? As soon as you throw the exception on line 8, you jump to the finally block on line 11. So there is no possible way for this line to execute. The compiler can tell, and assumes that you made a mistake somewhere.
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
 |
|
|
subject: Problem in Exception
|
|
|