End Google Ads 201810 - BS.net 01 --> hi,

for(int i = 0;i < n; i++)
{
try
{
//.........
}
catch(exception e)
{
//........
}
}

In tha above code,in catch block im printing some error message after the for loop terminated.my problem is when the for loop get terminates,im having the last error message only(the catch is called 2 times,so i need to display 2 error messages)...

pls help me...