dyna/stringtest4.cpp

The following code example is taken from the book
Object-Oriented Programming in C++
by Nicolai M. Josuttis, Wiley, 2002
© Copyright Nicolai M. Josuttis 2002


int main()
{
    try {
        //...
    }
    catch (const CPPBook::String::RangeError& error) {
        // exit main() with error message and error status
        std::cerr << "ERROR: invalid index " << error.index
                  << " when accessing string \"" << error.value
                  << "\"" << std::endl;
        return EXIT_FAILURE;
    }
}