'try/catch' must be followed by a compound statement. Missing '{'
A try or catch block is not found following the try or catch statement. The block must be enclosed in parentheses.
Example
#include <eh.h> class C; void main() { try { throw "ooops!"; } catch( C ) ; // error, missing block catch( C ) {} // OK }