2.3 What is wrong with the following skeleton?
try
{
...
} // try
catch (IOException e)
{
...
} // catch IOException
catch (FileNotFoundException e)
{
...
} // catch FileNotFoundException
 
 
View Solution
 
 
 
<< Back Next >>