NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2318

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.";
    }
}