C++ Exception 库 - ios_base::failure
描述
它是流异常的基类。
声明
以下是 std::ios_base::failure 的声明。
class failure;
C++11
class failure;
参数
none
返回值
none
异常
No-throw guarantee − 没有成员抛出异常。
成员函数
C++98
序号 | 成员函数 | 定义 |
---|---|---|
1 | what | 用于获取字符串识别异常 |
C++11
序号 | 成员函数 | 定义 |
---|---|---|
1 | code | 它用于获取错误代码 |
2 | what | 它用于获取与异常相关的消息 |