What is a good use case for uncaught_exception?
|
|
|
|
|
|
|
Herb Sutter seems to give good advice here. He doesn't know of a good use for it and says that some cases where it appears to be useful don't really work. |
||
|
|
|
|
It is also useful if you have code requiring an active exception (this is rare, but occasionally you have an exception control library that will use |
||
|
|
|
|
In my case building web apps, I use uncaught exception to halt execution, drop a page to the viewer letting them know than an error was encountered, and that it has been forwarded to our developers for review, and then log the error. If one happens, then we know to check it and build a handler, so if it ever happens again, it will be caught and handled gracefully. The main point is just to make sure the errors you HAVEN'T planned on will be handled somehow, and that you will be notified about them so they don't recur. |
||
|
|
