views:

26

answers:

1

I'm debugging an application in visual C++ 2008 express. An exception occurs so the debugger breaks and waits for my instructions.

How do I view the details of that exception, as an object, just like other stack level objects in the auto and local windows.

For instance, in my immediate case its a std:exception. So chances are it has some sort of a string associate with it as the error message.

A: 

If you just press F5 (Continue), the exception that was just caught is re-displayed so you can inspect it.

Tarydon
when I tried that, I would just get an access exception, from then on.
DragonFax