最終更新日時(UTC):
が更新

履歴 編集

function
<exception>

std::exception::コンストラクタ

exception();                    // (1) C++03
exception() noexcept;           // (1) C++11
constexpr exception() noexcept; // (1) C++26

exception(const exception&);                    // (2) C++03
exception(const exception&) noexcept;           // (2) C++11
constexpr exception(const exception&) noexcept; // (2) C++26

概要

exceptionオブジェクトを構築する。

  • (1) : デフォルトコンストラクタ
  • (2) : コピーコンストラクタ

例外

投げない

関連項目