Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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