5 lines
564 B
Plaintext
5 lines
564 B
Plaintext
When an exception is thrown, the call stack is unwound up to the point where the exception is to be handled. The destructors for all automatic objects declared between the point where the exception is thrown and where it is to be handled will be invoked. If one of these destructors exits with an exception, then the program will terminate in an implementation-defined manner, potentially yielding unexpected results.
|
|
|
|
|
|
Note that it is acceptable for a destructor to throw an exception that is handled within the destructor, for example within a try-catch block.
|