Article ID: 185294 - Last Review: March 16, 2005 - Revision: 3.2 PRB: Exception Code 0xE06D7363 When Calling Win32 SEH APIs
This article was previously published under Q185294 SYMPTOMS
When you call Win32 Structured Exception Handling (SEH) APIs, such as
GetExceptionCode() and GetExceptionInformation(), sometimes the system
reports the following exception code:
0xE06D7363
CAUSE
All Visual C++ exceptions thrown from code generated by the Microsoft
Visual C++ compiler contain this error code. Because this is a compiler-generated error, the code is not listed in the Win32 API header files. The code is actually a cryptic mnemonic device, with the initial "E" standing for "exception" and the final 3 bytes (0x6D7363) representing the ASCII values of "msc".
RESOLUTION
To properly handle the error, you need to wrap the offending code in a
try...catch block. This allows the developer to identify the actual Visual C++ exception that was thrown.
While debugging an application with Microsoft Visual Studio, you can halt the program immediately when this exception occurs, before any handler code is invoked. This gives you a chance to view the offending statement and fix the exception yourself by modifying the variable contents, thereby avoiding an unwind. To set how the debugger handles this exception, follow these steps:
STATUS
This behavior is by design.
REFERENCES
Visual C++ Books Online: Exception Handling; Debugging Exceptions
APPLIES TO
| Other Resources Other Support Sites
CommunityArticle Translations
|






Windows Live
Facebook
Twitter
Linkedin
Digg it
Yahoo
Delicious
StumbleUpon
Yammer
Reddit
Technorati
FriendFeed
Email
Back to the top