標準ライブラリヘッダ <exception>
提供: cppreference.com
このヘッダはエラー処理ライブラリの一部です。
クラス | |
| 標準ライブラリのコンポーネントによって投げられる例外のための基底クラス (クラス) | |
(C++11) |
現在の例外をキャプチャして格納するミックスイン型 (クラス) |
| std::current_exception が例外オブジェクトのコピーに失敗したときに投げられる例外 (クラス) | |
(C++17で削除) |
std::unexpected によって呼ばれる関数の型 (typedef) |
| std::terminate によって呼ばれる関数の型 (typedef) | |
(C++11) |
例外オブジェクトを扱うための共有ポインタ型 (typedef) |
関数 | |
(C++17で削除) |
動的例外指定に違反したときに呼ばれる関数 (関数) |
(C++20で削除)(C++17) |
例外処理が現在進行中かどうか調べます (関数) |
(C++11) |
例外オブジェクトから std::exception_ptr を作成します (関数テンプレート) |
(C++11) |
現在の例外を std::exception_ptr にキャプチャします (関数) |
(C++11) |
std::exception_ptr から例外を投げます (関数) |
(C++11) |
std::nested_exception をミックスインして引数を投げます (関数テンプレート) |
(C++11) |
std::nested_exception から例外を投げます (関数テンプレート) |
| 例外処理が失敗したときに呼ばれる関数 (関数) | |
(C++11) |
現在の terminate_handler を取得します (関数) |
| std::terminate によって呼ばれる関数を変更します (関数) | |
(C++11)(C++17で削除) |
現在の unexpected_handler を取得します (関数) |
(C++17で削除) |
std::unexpected によって呼ばれる関数を変更します (関数) |
概要
namespace std {
class exception;
class bad_exception;
class nested_exception;
using terminate_handler = void (*)();
terminate_handler get_terminate() noexcept;
terminate_handler set_terminate(terminate_handler f) noexcept;
[[noreturn]] void terminate() noexcept;
int uncaught_exceptions() noexcept;
using exception_ptr = /* unspecified */;
exception_ptr current_exception() noexcept;
[[noreturn]] void rethrow_exception(exception_ptr p);
template<class E> exception_ptr make_exception_ptr(E e) noexcept;
template<class T> [[noreturn]] void throw_with_nested(T&& t);
template<class E> void rethrow_if_nested(const E& e);
}
クラス std::exception
namespace std {
class exception {
public:
exception() noexcept;
exception(const exception&) noexcept;
exception& operator=(const exception&) noexcept;
virtual ~exception();
virtual const char* what() const noexcept;
};
}
クラス std::bad_exception
namespace std {
class bad_exception : public exception {
public:
// see [exception] for the specification of the special member functions
const char* what() const noexcept override;
};
}
クラス std::nested_exception
namespace std {
class nested_exception {
public:
nested_exception() noexcept;
nested_exception(const nested_exception&) noexcept = default;
nested_exception& operator=(const nested_exception&) noexcept = default;
virtual ~nested_exception() = default;
// access functions
[[noreturn]] void rethrow_nested() const;
exception_ptr nested_ptr() const noexcept;
};
template<class T> [[noreturn]] void throw_with_nested(T&& t);
template<class E> void rethrow_if_nested(const E& e);
}