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 C2705

'label' : illegal jump into 'exception handler block' scope

Execution jumps to a label within a try/catch, __try/__except, __try/__finally block. For more information, see Exception Handling.

Example

void main ()
{
goto trouble;
   __try {
   trouble: ;   //error
   }
   __finally {}
}