BorlandDave
Programmer
Is this a valid piece of code?:
try
{
try
{
// Try statement1 here
}
catch (Exception &Ex)
{
// If statement1 fails, try statement2 here
}
}
catch (Exception &Ex)
{
// If statement2 also fails, catch exception here
}
Thanks for any help.
try
{
try
{
// Try statement1 here
}
catch (Exception &Ex)
{
// If statement1 fails, try statement2 here
}
}
catch (Exception &Ex)
{
// If statement2 also fails, catch exception here
}
Thanks for any help.