最終更新日時:
が更新

履歴 編集

class
<stdexcept>

std::runtime_error

namespace std {
  class runtime_error : public exception;
}

概要

runtime_errorクラスは、プログラムの実行時にのみ検出可能なエラー(実行時エラー)を通知するために送出される例外クラス全般に対する基底クラスである。

実行時エラーは、プログラムの制御が及ばない事象に起因するため、あらかじめ予見することが難しいものを指す。

このクラスはexceptionを公開継承しており、exceptionとして捕捉できる。

メンバ関数

名前 説明 対応バージョン
(constructor) コンストラクタ
(destructor) デストラクタ
operator= 代入演算子
what エラー理由を取得する(std::exceptionから継承)

#include <stdexcept>
#include <iostream>

void process(bool device_available)
{
  if (!device_available) {
    // 実行時にしか判明しないエラー
    throw std::runtime_error("device is not available");
  }
}

int main()
{
  try {
    process(false);
  }
  catch (const std::runtime_error& e) {
    std::cout << e.what() << std::endl;
  }
}

出力

device is not available

関連項目

参照