捕获并修改std :: exception和subclasses,重新抛出相同的类型

时间:2015-04-10 12:55:47

标签: c++ exception exception-handling

我想这样做:

try
{
  // ...
}
catch(const std::exception& ex)
{
  // should preserve ex' runtime type
  throw type_in_question(std::string("Custom message:") + ex.what());
}

在不必为每个子类型编写单独的处理程序的情况下,这是否可行?

1 个答案:

答案 0 :(得分:2)

你正在寻找的东西可能是这样的:

try {
    // ...
}
template <typename Exc>
catch (Exc const& ex) {
    throw Exc(std::string("Custom message:") + ex.what());
}

至少我们如何在C ++中做这样的事情。不幸的是,你不能像这样在catch块中编写模板代码。您可以做的最好的事情就是将一些运行时类型信息添加为字符串:

try {
    // ...
}
catch (std::exception const& ex) {
    throw std::runtime_error(std::string("Custom message from ") +
                             typeid(ex).name() + ": " + ex.what());
}