名前空間
変種
操作

標準ライブラリヘッダー <exception>

From cppreference.com
 
 
標準ライブラリヘッダー
 

このヘッダーはエラー処理ライブラリの一部です。

目次

標準ライブラリコンポーネントが送出する例外の基底クラス
(クラス) [編集]
現在の例外をキャプチャして格納するためのmixin型
(クラス) [編集]
std::current_exception が例外オブジェクトのコピーに失敗したときにスローされる例外
(クラス) [編集]
(C++11で非推奨)(C++17で削除)
std::unexpected によって呼び出される関数の型
(typedef) [編集]
std::terminate によって呼び出される関数の型
(typedef) [編集]
例外オブジェクトを扱うための共有ポインタ型
(typedef) [編集]

関数

(C++11で非推奨)(C++17で削除)
動的例外仕様に違反した際に呼び出される関数
(関数) [編集]
(C++17で非推奨)(C++20で削除*)
例外処理が現在進行中であるかを確認する
(関数) [編集]
例外オブジェクトから std::exception_ptr を作成する
(関数テンプレート) [編集]
現在の例外を std::exception_ptr にキャプチャする
(関数) [編集]
std::exception_ptr から例外を送出する
(関数) [編集]
引数に std::nested_exception をmixinして送出する
(関数テンプレート) [編集]
std::nested_exception から例外を送出する
(関数テンプレート) [編集]
例外処理が失敗した際に呼び出される関数
(関数) [編集]
現在の terminate_handler を取得する
(関数) [編集]
std::terminate によって呼び出される関数を変更する
(関数) [編集]
(C++11で非推奨)(C++17で削除)
現在の unexpected_handler を取得する
(関数) [編集]
(C++11で非推奨)(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);
}

[編集] 関連項目

English 日本語 中文(简体) 中文(繁體)