命名空间
变体
操作

std::throw_with_nested

来自 cppreference.com
< cpp‎ | error
在头文件 <exception> 中定义
template< class T >
[[noreturn]] void throw_with_nested( T&& t );
(自 C++11 起)

如果 std::decay<T>::type 是一个非 final 非联合类类型,既不是 std::nested_exception 也不派生自 std::nested_exception,则抛出一个未指定类型的异常,该异常公开派生自 std::nested_exceptionstd::decay<T>::type,并使用 std::forward<T>(t) 从中构造。nested_exception 基类的默认构造函数调用 std::current_exception,在 std::exception_ptr 中捕获当前处理的异常对象(如果有)。

否则,抛出 std::forward<T>(t)

要求 std::decay<T>::typeCopyConstructible

内容

[编辑] 参数

t - 要抛出的异常对象

[编辑] 返回值

(无)

[编辑] 示例

演示通过嵌套异常对象进行构造和递归。

#include <exception>
#include <fstream>
#include <iostream>
#include <stdexcept>
#include <string>
 
// prints the explanatory string of an exception. If the exception is nested,
// recurses to print the explanatory of the exception it holds
void print_exception(const std::exception& e, int level =  0)
{
    std::cerr << std::string(level, ' ') << "exception: " << e.what() << '\n';
    try
    {
        std::rethrow_if_nested(e);
    }
    catch (const std::exception& nestedException)
    {
        print_exception(nestedException, level + 1);
    }
    catch (...) {}
}
 
// sample function that catches an exception and wraps it in a nested exception
void open_file(const std::string& s)
{
    try
    {
        std::ifstream file(s);
        file.exceptions(std::ios_base::failbit);
    }
    catch (...)
    {
        std::throw_with_nested(std::runtime_error("Couldn't open " + s));
    }
}
 
// sample function that catches an exception and wraps it in a nested exception
void run()
{
    try
    {
        open_file("nonexistent.file");
    }
    catch (...)
    {
        std::throw_with_nested(std::runtime_error("run() failed"));
    }
}
 
// runs the sample function above and prints the caught exception
int main()
{
    try
    {
        run();
    }
    catch (const std::exception& e)
    {
        print_exception(e);
    }
}

可能的输出

exception: run() failed
 exception: Couldn't open nonexistent.file
  exception: basic_ios::clear

[编辑] 参见

一个混合类型,用于捕获和存储当前异常
(类) [编辑]
std::nested_exception 中抛出异常
(函数模板) [编辑]