Where is this exception caught and handled?
Posted
by Zaki
on Stack Overflow
See other posts from Stack Overflow
or by Zaki
Published on 2010-03-09T06:13:16Z
Indexed on
2010/03/09
6:21 UTC
Read the original article
Hit count: 276
In some code I've been reading, I've come across this :
class Someclass
{
public static void main(String[] args) throws IOException
{
//all other code here......
}
}
If main() throws an exception, in this case its an IOException, where is it caught and handled?
© Stack Overflow or respective owner