Reputation: 1062
I was wondering how can I get an exception details encountered by VS 2012 debugger? The exception details will be used by a plugin installed within the IDE.
Upvotes: 0
Views: 42
Reputation: 27880
DebuggerEvents.OnExceptionThrown from dte.Events.DebuggerEvents provides ExceptionType, Name, Code, Description for an exception thrown.
Upvotes: 1