Compartilhar via


PREfast Warning 322 (Windows CE 5.0)

Send Feedback

322 - Empty _except block.

This message indicates that there is no code in the _except block. Some exceptions might go unhandled.

Example

Defective Source

void mail ()
{
   __try
   {
      someFunction();
   }
   __except(1)
   {
   }
}

Corrected Source

void main()
{
   __try
   {
      someFunction();
   }
   __except(1)
   {
      handleException();
   }
}

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.