Cpp: Exception handling (en)
Cpp: Exception handling (en)

Theory and examples about exceptions handling

Directory

Exception handling

When an exception is raised (using throw), execution of the program immediately jumps to the nearest enclosing try block (propagating up the stack if necessary to find an enclosing try block. If any of the catch handlers attached to the try block handle that type of exception, that handler is executed and the exception is considered handled.

If no appropriate catch handlers exist, execution of the program propagates to the next enclosing try block. If no appropriate catch handlers can be found before the end of the program, the program will fail with an exception error.

// 00intro.cpp

int main()
{
    cout << "Enter a number" << "\n";
    double x;
    cin >> x;

    try
    {
        if(x < 0.0)
        {
            throw static_cast<string>("Can't take sqrt of neg nb");
        }
        cout << "the sqrt of " << x << " is "
             << sqrt(x) << endl;
    }
    
    catch (const string exception)
    {
        cerr << "Error: " << exception << endl;
    }

    return 0;
}

I have some issues with my compiler that prints trash char if I use

if(x < 0.0)
{
    throw ("Can't take sqrt of neg nb");
}

/// ...

catch (const char* exception)
{
    std::cerr << "Error: " << exception << std::endl;
}

That’s why I use a static_cast.

1. What catch blocks typically do

If an exception is routed to a catch block, it is considered “handled” even if the catch block is empty. However, typically you’ll want your catch blocks to do something useful. There are three common things that catch blocks do when they catch an exception:

  1. catch blocks may print an error (either to the console, or a log file).

  2. catch blocks may return a value or error code back to the caller.

  3. a catch block may throw another exception. Because the catch block is outside of the try block, the newly thrown exception in this case is not handled by the preceding try block – it’s handled by the next enclosing try block.

2. Exceptions and functions

double mySqrt(double x)
{
    if (x < 0.0)
    {
        throw static_cast<string>("Can't take sqrt of neg nb");
    }
    return sqrt(x);
}


int main()
{
    cout << "Enter a number" << "\n";
    double x;
    x = -4;

    try
    {
        cout << "the sqrt of " << x << " is "
             << mySqrt(x) << endl;
    }
    catch (const string exception)
    {
        cerr << "Error: " << exception << endl;
    }
    
    return 0;
}

output:

Error: Can't take sqrt of neg nb

Let’s revisit for a moment what happens when an exception is raised.

  • First, the program looks to see if the exception can be handled immediately (which means it was thrown inside a try block).
  • If not, the current function is terminated, and the program checks to see if the function’s caller will handle the exception.
  • If not, it terminates the caller and checks the caller’s caller.
  • Each function is terminated in sequence until a handler for the exception is found, or until main() is terminated without the exception being handled.

This process is called unwinding the stack.

The most interesting part of the above program is that the mySqrt() function can throw an exception, but this exception is not immediately inside of a try block! This essentially means mySqrt is willing to say, “Hey, there’s a problem!”, but is unwilling to handle the problem itself.

Different applications may want to handle errors in different ways. A console application may want to print a text message. A windows application may want to pop up an error dialog. In one application, this may be a fatal error, and in another application it may not be. By passing the error back up the stack, each application can handle an error from mySqrt() in a way that is the most context appropriate for it! Ultimately, this keeps mySqrt() as modular as possible, and the error handling can be placed in the less-modular parts of the code.

3. Catch-all

Using the catch-all handler to wrap main()

One interesting use for the catch-all handler is to wrap the contents of main():

#include <iostream>
int main()
{
 
    try
    {
        runGame();
    }
    catch(...)
    {
        std::cerr << "Abnormal termination\n";
    }
 
    saveState(); // Save user's game
    return 1;
}

In this case, if runGame() or any of the functions it calls throws an exception that is not caught, that exception will unwind up the stack and eventually get caught by this catch-all handler. This will prevent main() from terminating, and gives us a chance to print an error of our choosing and then save the user’s state before exiting. This can be useful to catch and handle problems that may be unanticipated.

3. Exception specifiers

This subsection should be considered optional reading because exception specifiers are rarely used in practice, are not well supported by compilers, and Bjarne Stroustrup (the creator of C++) considers them a failed experiment.

Exception specifiers are a mechanism that allows us to use a function declaration to specify whether a function may or will not throw exceptions. This can be useful in determining whether a function call needs to be put inside a try block or not.

There are three types of exception specifiers, all of which use what is called the throw (…) syntax.

First, we can use an empty throw statement to denote that a function does not throw any exceptions outside of itself:

int doSomething() throw(); // does not throw exceptions

Note that doSomething() can still use exceptions as long as they are handled internally. Any function that is declared with throw() is supposed to cause the program to terminate immediately if it does try to throw an exception outside of itself, but implementation is spotty.

Second, we can use a specific throw statement to denote that a function may throw a particular type of exception:

int doSomething() throw(double); // may throw a double

Finally, we can use a catch-all throw statement to denote that a function may throw an unspecified type of exception:

int doSomething() throw(...); // may throw anything

Due to the incomplete compiler implementation, the fact that exception specifiers are more like statements of intent than guarantees, some incompatibility with template functions, and the fact that most C++ programmers are unaware of their existence, I recommend you do not bother using exception

4. Exceptions and member functions

Overloaded operators

Overloaded operators have specific requirements as to the number and type of parameter(s) they can take and return, there is no flexibility for passing back error codes or boolean values to the caller. However, since exceptions do not change the signature of a function, they can be put to great use here. Here’s an example:

int& IntArray::operator[](const int index)
{
    if (index < 0 || index >= getLength())
    {
        throw index;
    }

    return m_data[index];
}

Now, if the user passes in an invalid index, operator[] will throw an int exception.

Constructors

Constructors are another area of classes in which exceptions can be very useful. If a constructor fails, simply throw an exception to indicate the object failed to create. The object’s construction is aborted and its destructor is never executed (note: this means your exception handler should handle any necessary cleanup).

5. Exception class

An exception class is just a normal class that is designed specifically to be thrown as an exception.

class ArrayException
{
private:
    std::string _error;
public:
    ArrayException(std::string error)
        : _error(error) {}
    
    const char* getError() { return _error.c_str(); }
};

class IntArray
{
protected:
    int _data[3];
    
public:
    IntArray(){}
    int getLenght() { return 3; }
    int& operator[](const int index)
    {
        if (index < 0 || index >= getLenght())
        {
            throw ArrayException("Invalid index");
        }

        return _data[index];
    }
};

int main()
{
    IntArray a1;

    try
    {
        int value = a1[5];
    }
    catch (ArrayException &exception)
    {
        std::cerr << "An array exception occured (" << exception.getError() << ")\n";
    }
    
    return 0;
}

Using such a class, we can have the exception return a description of the problem that occurred, which provides context for what went wrong. And since ArrayException is its own unique type, we can specifically catch exceptions thrown by the array class and treat them differently from other exceptions if we wish.

Note that exception handlers should catch class exception objects by reference instead of by value. This prevents the compiler from making a copy of the exception, which can be expensive when the exception is a class object, and prevents object slicing when dealing with derived exception classes. Catching exceptions by pointer should generally be avoided unless you have a specific reason to do so.

6. Exceptions and inheritance

class Base
{
public:
    Base() {}
};
 
class Derived: public Base
{
public:
    Derived() {}
};
 
int main()
{
    try
    {
        throw Derived();
    }
    catch (Base &base)
    {
        cerr << "caught Base";
    }
    catch (Derived &derived)
    {
        cerr << "caught Derived";
    }
 
    return 0;
}	

output:

caught Base

Derived classes will be caught by handlers for the base type. Because Derived is derived from Base, Derived is-a Base (they have an is-a relationship). Second, when C++ is attempting to find a handler for a raised exception, it does so sequentially. Consequently, the first thing C++ does is check whether the exception handler for Base matches the Derived exception. Because Derived is-a Base, the answer is yes, and it executes the catch block for type Base! The catch block for Derived is never even tested in this case.

In order to make this example work as expected, we need to flip the order of the catch blocks:

class Base
{
public:
    Base() {}
};
 
class Derived: public Base
{
public:
    Derived() {}
};
 
int main()
{
    try
    {
        throw Derived();
    }
    catch (Derived &derived)
    {
        cerr << "caught Derived";
    }
    catch (Base &base)
    {
        cerr << "caught Base";
    }
 
    return 0;
}	

This way, the Derived handler will get first shot at catching objects of type Derived (before the handler for Base can). Objects of type Base will not match the Derived handler (Derived is-a Base, but Base is not a Derived), and thus will “fall through” to the Base handler.

Rule: Handlers for derived exception classes should be listed before those for base classes.

The ability to use a handler to catch exceptions of derived types using a handler for the base class turns out to be exceedingly useful.

7. std::exception

Many of the classes and operators in the standard library throw exceptions classes on failure. For example, operator new and std::string can throw std::bad_alloc if they are unable to allocate enough memory. A failed dynamic_cast will throw std::bad_cast.

All of these exception classes are derived from a single class called std::exception. std::exception is a small interface class designed to serve as a base class to any exception thrown by the C++ standard library.

Thanks to std::exception, we can set up an exception handler to catch exceptions of type std::exception, and we’ll end up catching std::exception and all (21+) of the derived exceptions together in one place. Easy!

#include<iostream>
#include<exception>
#include<string>

int main()
{
    try
    {
        // code with standard library goes here
        // We'll trigger one of these exception...
        std::string s;
        s.resize(-1); // will trigger a std::bad_alloc
    }
    // this handler will catch std::exception and all the
    // ferived exceptions too
    catch (std::exception &exception)
    {
        std::cerr << "Standard exception: " << exception.what() << '\n';
    }

    return 0;
}

The above program prints:

Standard exception: string too long

std::exception has a virtual member function named what() that returns a C-style string description of the exception. Most derived classes override the what() function to change the message. Note that this string is meant to be used for descriptive text only – do not use it for comparisons, as it is not guaranteed to be the same across compilers.

Sometimes we’ll want to handle a specific type of exception differently. In this case, we can add a handler for that specific type, and let all the others “fall through” to the base handler. Consider:

try
{
    
}
// This handler will catch std::bad_alloc 
// (and any exceptions derived from it) here
catch (std::bad_alloc &exception)
{
    std::cerr << "You ran out of memory! " << '\n';
}
catch (std::exception &exception)
{
    std::cerr << "Standard exception: " << exception.what() << '\n';
}

In this example, exceptions of type std::bad_alloc will be caught by the first handler and handled there. Exceptions of type std::exception and all of the other derived classes will be caught by the second handler.

Such inheritance hierarchies allow us to use specific handlers to target specific derived exception classes, or to use base class handlers to catch the whole hierarchy of exceptions. This allows us a fine degree of control over what kind of exceptions we want to handle while ensuring we don’t have to do too much work to catch “everything else” in a hierarchy.

8. Using the standard exceptions directly

Nothing throws a std::exception directly, and neither should you. However, you should feel free to throw the other standard exception classes in the standard library if they adequately represent your needs. cppreference

  • logic_error
    • invalid_argument
    • domain_error
    • length_error
    • out_of_range
    • future_error(C++11)
    • bad_optional_access(C++17)
  • runtime_error
    • range_error
    • overflow_error
    • underflow_error
    • regex_error(C++11)
    • tx_exception(TM TS)
    • system_error(C++11)
      • ios_base::failure(C++11)
      • filesystem::filesystem_error(C++17)
  • bad_typeid
  • bad_cast
    • bad_any_cast(C++17)
  • bad_weak_ptr(C++11)
  • bad_function_call(C++11)
  • bad_alloc
    • bad_array_new_length(C++11)
  • bad_exception
  • ios_base::failure(until C++11)
  • bad_variant_access(C++17)

std::runtime_error (included as part of the stdexcept header) is a popular choice, because it has a generic name, and its constructor takes a customizable message:

#include <iostream>
#include <stdexcept>
 
int main()
{
	try
	{
		throw std::runtime_error("Bad things happened");
	}
	// This handler will catch std::exception and all the derived exceptions too
	catch (std::exception &exception)
	{
		std::cerr << "Standard exception: " << exception.what() << '\n';
	}
 
	return 0;
}

This prints:

Standard exception: Bad things happened

9. Deriving your own classes from std::exception

You can derive your own classes from std::exception, and override the virtual what() member function. Here’s the same program as above, with ArrayException derived from std::exception:

#include<iostream>
#include<string>
#include<exception>

class ArrayException :public std::exception
{
protected:
    std::string _error;
    
public:
    ArrayException (std::string error): _error(error) {}
    // return the std::string as a const C-style string
    const char* what() { return _error.c_str(); }
};

class IntArray
{
protected:
    int _data[3];
public:
    IntArray(){}
    int getLenght() { return 3; }
    int& operator[](const int index)
    {
        if (index < 0 || index >= getLenght())
            throw ArrayException("invalid index");
        
        return _data[index];
    }
};

int main()
{
    IntArray a1; 
    try
    {
        int value = a1[5];
    }
    // derived catch block go first !!
    catch (ArrayException & exception) 
    {
        std::cerr << "An array exception occured (" 
                  << exception.what() << ")\n";
    }
    catch (std::exception & exception) 
    {
        std::cerr << "Some other std::exception occured (" 
                  << exception.what() << ")\n";
    }
    return 0;
}

It’s up to you whether you want create your own standalone exception classes, use the standard exception classes, or derive your own exception classes from std::exception. All are valid approaches depending on your aims.

Rethrowing an exception

http://www.learncpp.com/cpp-tutorial/14-6-rethrowing-exceptions/

10. Function try blocks

Try and catch blocks work well enough in most cases, but there is one particular case in which they are not sufficient. Consider the following example:

#include<iostream>
using namespace std;

class A
{
protected:
    int _x;    
public:
    A(int x): _x(x) { if (x <= 0) { throw 1;} }
};

class B:public A
{
public:
    B(int x): A(x)
    {
        // what happens if creation of A fails and
        // we want to handle it here?
    }
};

int main()
{
    try
    {
        B b(0);
    }
    catch (int)
    {
        std::cout << "Oops\n";
    }
    return 0;
}

In the above example, derived class B calls base class constructor A, which can throw an exception. Because the creation of object b has been placed inside a try block (in function main()), if A throws an exception, main’s try block will catch it. Consequently, this program prints:

Oops

But what if we want to catch the exception inside of B? The call to base constructor A happens via the member initialization list, before the B constructor’s body is called. There’s no way to wrap a standard try block around it.

In this situation, we have to use a slightly modified try block called a function try block.

Function try blocks are designed to allow you to establish an exception handler around the body of an entire function, rather than around a block of code:

#include<iostream>
using namespace std;

class A
{
protected:
    int _x;    
public:
    A(int x): _x(x) { if (x <= 0) { throw 1;} }
};

class B:public A
{
public:
    B(int x) try : A(x) // note addition of try keyword
    {} 
    catch (...) // note this is at same level of indendation 
    {           // as the function itself

     // exceptions from member initializer list or constructor
     // body are cought here
     std::cerr << "Construction of A failed\n";   
     // if an exception isn't explicitly thrown here, the curent
     // exception will be implicitly rethrown
    }
};

int main()
{
    try
    {
        B b(0);
    }
    catch (int)
    {
        std::cout << "Oops\n";
    }
    return 0;
}

When this program is run, it produces the output:

Construction of A failed
Oops

Let’s examine this program in more detail.

First, note the addition of the “try” keyword before the member initializer list. This indicates that everything after that point (until the end of the function) should be considered inside of the try block.

Second, note that the associated catch block is at the same level of indentation as the entire function. Any exception thrown between the try keyword and the end of the function body will be eligible to be caught here.

Finally, unlike normal catch blocks, which allow you to either resolve an exception, throw a new exception, or rethrow an existing exception, with function-level try blocks, you must throw or rethrow an exception. If you do not explicitly throw a new exception, or rethrow the current exception (using the throw keyword by itself), the exception will be implicitly rethrown up the stack.

In the program above, because we did not explicitly throw an exception from the function-level catch block, the exception was implicitly rethrown, and was caught by the catch block in main(). This is the reason why the above program prints “Oops”!

Although function level try blocks can be used with non-member functions as well, they typically aren’t because there’s rarely a case where this would be needed. They are almost exclusive used with derived constructors!

11. Exception dangers and downsides

Cleaning up resources

One of the biggest problems that new programmers run into when using exceptions is the issue of cleaning up resources when an exception occurs. Consider the following example:

try
{
    openFile(filename);
    writeFile(filename, data);
    closeFile(filename);
}
catch (FileException &exception)
{
    cerr << "Failed to write to file: " << exception.what() << std::endl;
}

What happens if WriteFile() fails and throws a FileException? At this point, we’ve already opened the file, and now control flow jumps to the FileException handler, which prints an error and exits. Note that the file was never closed! This example should be rewritten as follows:

try
{
    openFile(filename);
    writeFile(filename, data);
    closeFile(filename);
}
catch (FileException &exception)
{
    // Make sure file is closed
    closeFile(filename);
    // Then write error
    cerr << "Failed to write to file: " << exception.what() << std::endl;
}

This kind of error often crops up in another form when dealing with dynamically allocated memory:

try
{
    Person *john = new Person("John", 18, PERSON_MALE);
    processPerson(john);
    delete john;
}
catch (PersonException &exception)
{
    cerr << "Failed to process person: " << exception.what() << '\n';
}

If processPerson() throws an exception, control flow jumps to the catch handler. As a result, john is never deallocated! This example is a little more tricky than the previous one – because john is local to the try block, it goes out of scope when the try block exits. That means the exception handler can not access john at all (its been destroyed already), so there’s no way for it to deallocate the memory.

However, there are two relatively easy ways to fix this. First, declare john outside of the try block so it does not go out of scope when the try block exits:

Person *john = NULL;
try
{
    john = new Person("John", 18, PERSON_MALE);
    processPerson(john);
    delete john;
}
catch (PersonException &exception)
{
    delete john;
    cerr << "Failed to process person: " << exception.what() << '\n';
}

Because john is declared outside the try block, it is accessible both within the try block and the catch handlers. This means the catch handler can do cleanup properly.

The second way is to use a local variable of a class that knows how to cleanup itself when it goes out of scope (often called a “smart pointer”. The standard library provides a class called std::unique_ptr that can be used for this purpose. std::unique_ptr is a template class that holds a pointer, and deallocates it when it goes out of scope.

#include <memory>; // for std::unique_ptr
 
try
{
    Person *john = new Person("John", 18, PERSON_MALE);
    unique_ptr<Person> upJohn(john); // upJohn now owns john
 
    ProcessPerson(john);
 
    // when upJohn goes out of scope, it will delete john
}
catch (PersonException &exception)
{
    cerr << "Failed to process person: " << exception.what() << '\n';
}

Exceptions and destructors

Unlike constructors, where throwing exceptions can be a useful way to indicate that object creation did not succeed, exceptions should never be thrown in destructors.

The problem occurs when an exception is thrown from a destructor during the stack unwinding process. If that happens, the compiler is put in a situation where it doesn’t know whether to continue the stack unwinding process or handle the new exception. The end result is that your program will be terminated immediately.

Consequently, the best course of action is just to abstain from using exceptions in destructors altogether. Write a message to a log file instead.

Performance concerns

Exceptions do come with a small performance price to pay. They increase the size of your executable, and they may also cause it to run slower due to the additional checking that has to be performed. However, the main performance penalty for exceptions happens when an exception is actually thrown. In this case, the stack must be unwound and an appropriate exception handler found, which is a relatively expensive operation. Consequently, exception handling is best used for truly exceptional cases and catastrophic errors, not for routine error handling.

As a note, some modern computer architectures support an exception model called zero-cost exceptions. Zero-cost exceptions, if supported, have no additional runtime cost in the non-error case (which is the case we most care about performance). However, they incur an even larger penalty in the case where an exception is found.

learncpp.com

12. Exercise:

1) Write a Fraction class that has a constructor that takes a numerator and a denominator. If the user passes in a denominator of 0, throw an exception of type std::runtime_error (included in the stdexcept header). In your main program, ask the user to enter two integers. If the Fraction is valid, print the fraction. If the Fraction is invalid, catch a std::exception, and tell the user that they entered an invalid fraction.

#include<iostream>
#include<stdexcept>

class Fraction
{
protected:
    int _num;
    int _den;
public:
    Fraction() {}

    Fraction(int num, int den): _num(num), _den(den)
    {
        if (den == 0)
        {
            throw std::runtime_error("Invalid denominator");
        }
    }

    friend std::ostream& operator <<
    (std::ostream& out, Fraction& src)
    {
        return out << src._num << "/" << src._den;
    }
};


int main()
{
    std::cout << "Numerator: ";
    int numerator;
    std::cin >> numerator;

    std::cout << "Denominator: ";
    int denominator;
    std::cin >> denominator;

    try
    {
        Fraction f{numerator,denominator};
        std::cout << "Your fraction is: " << f << '\n';
    }
    catch (std::exception &e)
    {
        std::cerr << "Standard exception: " << e.what() << '\n';
    }
        
    return 0;
}