The information in this article applies to:
SYMPTOMSWhen you call Win32 Structured Exception Handling (SEH) APIs, such as GetExceptionCode() and GetExceptionInformation(), sometimes the system reports the following exception code: Sometimes GetLastError() also returns this value. You receive this error code when a program compiled with the Microsoft Visual C++ compiler throws an exception using Visual C++ exception handling. CAUSEAll 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 pneumonic 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.
STATUSThis behavior is by design. REFERENCESVisual C++ Books Online: Exception Handling; Debugging Exceptions Additional query words: E06D7363
Keywords : kbAPI kbKernBase kbNTOS400 kbWinOS2000 kbExceptHandSEH kbVC500 kbWinOS95 |
Last Reviewed: January 10, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |