OK, so imagine that my breakpoint in objc_exception_throw has just triggered. I\'m sitting at the debugger prompt, and I want to get some more information abou
If you have a catch statement, put a breakpoint in there and you can inspect the exception object at that point.
If you don't have a catch statement, continue.
You'll get a message in your terminal like this:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[0]'
However, you're probably looking for a way to inspect it without continuing since you'll lose your nice stack trace when the application is terminated.
For that it sounds like Fnord's answer is best, but I wasn't able to get it working in LLDB.