C++ Exception 库 - system_error
描述
它是一个系统错误异常,该类定义作为异常抛出的对象类型,以报告在运行时源自操作系统或其他具有关联 error_code 的低级应用程序接口的条件。
声明
以下是 std::system_error 的声明。
class system_error : public runtime_error;
C++11
class system_error : public runtime_error;
参数
none
返回值
none
异常
No-throw guarantee − 没有成员抛出异常。
成员
constructor − what_arg 与成员 what 返回的值具有相同的内容。
what − 它用于获取字符串识别异常。