catch handler expected a parenthesized exception declaration
A catch handler was defined without a parenthesized type.
The following is an example of this error:
#include <eh.h>
class C;
void main()
{
try
{
throw "ooops!";
}
catch C {} // error
catch( C ) {} // OK
}