no try block associated with this catch handler
A catch handler is defined but not preceded by a try block.
Example
#include <eh.h> void main() { // no try block catch( int ) // error { cout << "Integer exception raised."; } }