P 
		
								
				
				
			
		Pohihihi
I was wondering what is the ill effect of using try catch in the code, both
nested and simple big one.
e.g.
try
{
\\ whole app code goes here
} catch (Exception ee) {}
-- AND --
try
{
try
{
try{...} catch(...){...}
}catch(Exception ee) {}
} catch (Exception ee) {}
				
			nested and simple big one.
e.g.
try
{
\\ whole app code goes here
} catch (Exception ee) {}
-- AND --
try
{
try
{
try{...} catch(...){...}
}catch(Exception ee) {}
} catch (Exception ee) {}
	
arse(string)