I am trying to use lldb for c++ debugging and I want to halt if an exception is thrown, like gdb\'s catch throw, and I cannot find an equivalent in the lldb documen
catch throw
I think breakpoint set -w is the correct answer, you can use help breakpoint set to see the document.
breakpoint set -w
help breakpoint set