函数
<exception>

std::rethrow_if_nested

template <class T>  void rethrow_if_nested (const T& e);
如果嵌套则重新抛出
如果 e 公开且明确地派生自 nested_exception,则重新抛出嵌套在 e 中的异常。

否则,函数不执行任何操作(也不抛出)。

如果 *嵌套异常* 为 *空*,函数将改调用 terminate

参数

e
一个对象或引用。
如果它派生自 nested_exception,则函数抛出嵌套异常。

返回值



示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// throw_with_nested/rethrow_if_nested example
#include <iostream>       // std::cerr
#include <exception>      // std::exception, std::throw_with_nested, std::rethrow_if_nested
#include <stdexcept>      // std::logic_error

// recursively print exception whats:
void print_what (const std::exception& e) {
  std::cerr << e.what() << '\n';
  try {
    std::rethrow_if_nested(e);
  } catch (const std::exception& nested) {
    std::cerr << "nested: ";
    print_what(nested);
  }
}

// throws an exception nested in another:
void throw_nested() {
  try {
    throw std::logic_error ("first");
  } catch (const std::exception& e) {
    std::throw_with_nested(std::logic_error("second"));
  }
}

int main () {
  try {
    throw_nested();
  } catch (std::exception& e) {
    print_what(e);
  }

  return 0;
}

输出

second
nested: first


异常安全

该函数可能会抛出异常。

另见