system_error クラス
完全にスローされたすべての例外の基本クラスを低レベルのシステム エラーを報告することを表します。
class system_error : public runtime_error {
public:
explicit system_error(error_code _Errcode, const string& _Message = "");
system_error(error_code _Errcode, const char *_Message);
system_error(error_code::value_type _Errval,
const error_category& _Errcat, const string& _Message);
system_error(error_code::value_type _Errval,
const error_category& _Errcat, const char *_Message);
const error_code& code() const throw();
const error_code& code() const throw();
};
解説
クラス 例外 の what によって返される値の型は error_code の _Message および保存されたオブジェクトで構成されます code (または error_code(_Errval, _Errcat))。
メンバー関数 code は error_code に保存されたオブジェクトを返します。
必要条件
ヘッダー: <system_error>
名前空間: std