Ok I've got this code that uses the try catch code and I'm not sure it works right with this syntax
CODE
try
{
//Some Stuff
}
catch(CMemoryException *pEx)
{
//Log MemException
}
catch(CDBException* pEx)
{
//Log DBException
}
catch(...)
{
//Log default Stuff
}
return true;
Is "catch(...)" the correct syntax for the default catch statement here?
Thanks for your help.