4.6. Exception Objects

Up to now we have only thrown character string exceptions from functions that raise exceptions. This type of exception handling is limited and may not provide enough information for catch handlers in many programs. A better approach creates exception objects that use constructors to encapsulate information about why a function raised an exception. Once a function throws an exception object, a catch handler may call member functions that help the program decide what to do.

To illustrate why exception objects are beneficial, let's consider the File class constructors from page 186.

 Fifo::File(const char *fn, const char *mode = "w+") { fp = fopen(fn, mode); if (fp == NULL) throw "can't open file"; } Fifo::File() { fp = tmpfile(); ...

Get Navigating C++ and Object-Oriented Design 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.