MBZ
MBZ

Reputation: 27592

C++ get description of an exception caught in catch(...) block

can I get description of an exception caught by

catch(...)

block? something like .what() of std::exception.

Upvotes: 34

Views: 15259

Answers (6)

Steve Jessop
Steve Jessop

Reputation: 279255

There is one trick you might be able to use:

catch(...) {
    handle_exception();
}

void handle_exception() {
    try {
        throw;
    } catch (const std::exception &e) {
        std::cout << e.what() << "\n";
    } catch (const int i) {
        std::cout << i << "\n";
    } catch (const long l) {
        std::cout << l << "\n";
    } catch (const char *p) {
        std::cout << p << "\n";
    } catch (...) {
        std::cout << "nope, sorry, I really have no clue what that is\n";
    }
}

and so on, for as many different types as you think might be thrown. If you really know nothing about what might be thrown then even that second-to-last one is wrong, because somebody might throw a char* that doesn't point to a nul-terminated string.

It's generally a bad idea to throw anything that isn't a std::exception or derived class. The reason std::exception exists is to allow everybody to throw and catch objects that they can do something useful with. In a toy program where you just want to get out of there and can't even be bothered to include a standard header, OK, maybe throw an int or a string literal. I don't think I'd make that part of a formal interface. Any exceptions you throw are part of your formal interface, even if you somehow forgot to document them.

Upvotes: 46

zangw
zangw

Reputation: 48396

Quoting bobah

#include <iostream>

#include <exception>
#include <typeinfo>
#include <stdexcept>

int main()
{
    try {
        throw ...; // throw something
    }
    catch(...)
    {
        std::exception_ptr p = std::current_exception();
        std::clog <<(p ? p.__cxa_exception_type()->name() : "null") << std::endl;
    }
    return 1;
}

Upvotes: 1

M.M
M.M

Reputation: 141576

Since C++11 you can capture the current exception with a pointer:

std::exception_ptr p;     // default initialization is to nullptr

try {
      throw 7;
}
catch(...)
{
     p = std::current_exception();
}

This behaves like a smart pointer; so long as there is at least one pointer pointing to the exception object it is not destroyed.

Later (maybe even in a different function) you can take action in a similar way to the current top answer:

try {
    if ( p )
        std::rethrow_exception(p);
}
catch(int x)
{

}
catch(std::exception &y)
{
}

Upvotes: 4

liaK
liaK

Reputation: 11648

How we have our exceptions implemented is that, we have our own Exception classes, that are all derived from std::exception..

Our exceptions will contain Exception message, Function name, File name and line where exceptions are generated. These are all useful not just to show the Messages but also can be used for logging which helps to diagnose the Exception quite easily. So, we get the entire information about the Exceptions generated.

Remember exceptions are for us to get information about what went wrong. So, every bit of information helps in this regard..

Upvotes: 2

jdisk
jdisk

Reputation: 484

If you know you only throw std::exception or subclasses, try

catch(std::exception& e) {...e.what()... }

Otherwise, as DeadMG wrote, since you can throw (almost) everything, you cannot assume anything about what you caught.

Normally catch(...) should only be used as the last defense when using badly written or documented external libraries. So you would use an hierarchy

catch(my::specialException& e) {
      // I know what happened and can handle it
      ... handle special case
      }
catch(my::otherSpecialException& e) {
      // I know what happened and can handle it
      ... handle other special case
      }
catch(std::exception& e) {
      //I can at least do something with it
      logger.out(e.what());
      }
catch(...) {
     // something happened that should not have 
     logger.out("oops");
     }

Upvotes: 4

Puppy
Puppy

Reputation: 146930

That block might catch an int, or a const char*, or anything. How can the compiler possibly know how to describe something when it knows nothing about it? If you want to get information off an exception, you must know the type.

Upvotes: 5

Related Questions