How to catch ANY exception in gdb
In gdb, run
catch throw
in order to break on any exception that is being thrown.
If you want to only break on a specific exception type instead, use
catch throw [exception type]
In gdb, run
catch throw
in order to break on any exception that is being thrown.
If you want to only break on a specific exception type instead, use
catch throw [exception type]