'try' block starting on line 'number' has no catch handlers
A try block must have at least one catch handler.
Example
#include <eh.h> void main() { try { throw "ooops!"; } // error: no catch handler }