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