catch handler expected a parenthesized exception declaration
A catch handler has no parenthesized type.
Example
#include <eh.h> class C; void main() { try { throw "ooops!"; } catch C {} // error catch( C ) {} // OK }