catch handlers must specify one type
A catch handler specified no type or multiple types.
Example
#include <eh.h> int main() { try { throw "Out of memory!"; } catch( int ,int) // error, two types { } return 0; }