One of the problems with C++ exceptions is that they can result in memory leaks between when the exception is thrown and when the exception is caught.
There are ways that you can protect against exceptions causing memory leaks.
Name a way that you can implement your code to protect against exceptions causing memory leaks.