std::nested_exception
提供: cppreference.com
<tbody>
</tbody>
| ヘッダ <exception> で定義
|
||
class nested_exception; |
(C++11以上) | |
std::nested_exception は現在の例外をキャプチャして格納できる多相ミックスインクラスです。 お互いに任意の型の例外をネストすることを可能とします。
メンバ関数
| nested_exception を構築します (パブリックメンバ関数) | |
[仮想] |
nested_exception を破棄します (仮想パブリックメンバ関数) |
| nested_exception の内容を置き換えます (パブリックメンバ関数) | |
| 格納されている例外を投げます (パブリックメンバ関数) | |
| 格納されている例外を指すポインタを取得します (パブリックメンバ関数) |
非メンバ関数
(C++11) |
std::nested_exception をミックスインして引数を投げます (関数テンプレート) |
(C++11) |
std::nested_exception から例外を投げます (関数テンプレート) |
例
ネストした例外オブジェクトを通した構築および再帰をデモンストレーションします
Run this code
#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 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& e) {
print_exception(e, 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
関連項目
(C++11) |
例外オブジェクトを扱うための共有ポインタ型 (typedef) |
(C++11) |
std::nested_exception をミックスインして引数を投げます (関数テンプレート) |
(C++11) |
std::nested_exception から例外を投げます (関数テンプレート) |