5
votes
3answers
201 views
Checked Unchecked Exceptions
Consider the following code
private int meth()
{
try
{
return 1;
}
catch(Exception ex)
{
return 2;
}
finally
{
return 3;
}
}
…
