名前空間
変種
操作

std::nested_exception

提供: cppreference.com
< cpp‎ | error
 
 
ユーティリティライブラリ
汎用ユーティリティ
日付と時間
関数オブジェクト
書式化ライブラリ(C++20)
(C++11)
関係演算子 (C++20で非推奨)
整数比較関数
(C++20)
スワップと型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
一般的な語彙の型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等文字列変換
(C++17)
(C++17)
 
 
 
ヘッダ <exception> で定義
class nested_exception;
(C++11以上)

std::nested_exception は現在の例外をキャプチャして格納できる多相ミックスインクラスです。 お互いに任意の型の例外をネストすることを可能とします。

目次

[編集]メンバ関数

nested_exception を構築します
(パブリックメンバ関数)
nested_exception を破棄します
(仮想パブリックメンバ関数)
nested_exception の内容を置き換えます
(パブリックメンバ関数)
格納されている例外を投げます
(パブリックメンバ関数)
格納されている例外を指すポインタを取得します
(パブリックメンバ関数)

[編集]非メンバ関数

std::nested_exception をミックスインして引数を投げます
(関数テンプレート)[edit]
std::nested_exception から例外を投げます
(関数テンプレート)[edit]

[編集]

ネストした例外オブジェクトを通した構築および再帰をデモンストレーションします

#include <iostream>#include <stdexcept>#include <exception>#include <string>#include <fstream>   // prints the explanatory string of an exception. If the exception is nested,// recurses to print the explanatory of the exception it holdsvoid print_exception(conststd::exception& e, int level =0){std::cerr<<std::string(level, ' ')<<"exception: "<< e.what()<<'\n';try{std::rethrow_if_nested(e);}catch(conststd::exception& e){ print_exception(e, level+1);}catch(...){}}   // sample function that catches an exception and wraps it in a nested exceptionvoid open_file(conststd::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 exceptionvoid 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 exceptionint main(){try{ run();}catch(conststd::exception& e){ print_exception(e);}}

出力:

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

[編集]関連項目

例外オブジェクトを扱うための共有ポインタ型
(typedef)[edit]
std::nested_exception をミックスインして引数を投げます
(関数テンプレート)[edit]
std::nested_exception から例外を投げます
(関数テンプレート)[edit]
close