17. Exception Handling: A Deeper Look
It is common sense to take a method and try it. If it fails, admit it frankly and try another. But above all, try something.
—Franklin Delano Roosevelt
If they’re running and they don’t look where they’re going I have to come out from somewhere and catch them.
—Jerome David Salinger
Objectives
In this chapter you’ll learn:
• To use try
, catch
and throw
to detect, handle and indicate exceptions, respectively.
• To declare new exception classes.
• How stack unwinding enables exceptions not caught in one scope to be caught in another.
• To handle new
failures.
• To use unique_ptr
to prevent memory leaks.
• To understand the standard exception hierarchy.
Get C++ How to Program, Ninth Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.