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 C2317

'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
}