- Feb 8, 2004
- 12,604
- 15
- 81
like for example
I think its more readable that doing say the whole method in a try catch or having nested try catches no? Is it bad practice?
Code:
try
{
doThings();
}
catch (ParseException ex)
{
System.out.println("Its not working :(");
return;
}
I think its more readable that doing say the whole method in a try catch or having nested try catches no? Is it bad practice?
